mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
9 lines
173 B
Java
9 lines
173 B
Java
public class Test<K> {
|
|
public Test<K> test() {
|
|
return getKTest(this);
|
|
}
|
|
|
|
private static <K> Test<K> getKTest(Test<K> test) {
|
|
return test;
|
|
}
|
|
} |