mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
GitOrigin-RevId: 3cac9f65131e216cc2dd43fe58bf0cccbcb69839
13 lines
252 B
Java
13 lines
252 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
public void test() {
|
|
byte[] one = getBytes("one");
|
|
byte[] two = getBytes("two");
|
|
}
|
|
|
|
@NotNull
|
|
private static byte[] getBytes(String one) {
|
|
return one.getBytes();
|
|
}
|
|
} |