mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 20:45:15 +07:00
8 lines
244 B
Java
8 lines
244 B
Java
class Test {
|
|
private String wrap(final String wrapWith, final String token) {
|
|
return join(wrapWith, token, wrapWith);
|
|
}
|
|
|
|
@org.jetbrains.annotations.Contract("null->null; !null->!null")
|
|
native static <T> String join(T... elements);
|
|
} |