mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
8 lines
159 B
Java
8 lines
159 B
Java
// "Remove 'getClass()' call" "true"
|
|
public class Main {
|
|
Class<?> test(Class<?> obj) {
|
|
return switch(obj.hashCode()) {
|
|
default -> obj;
|
|
};
|
|
}
|
|
} |