mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
14 lines
193 B
Java
14 lines
193 B
Java
// "Remove variable 'i'" "true"
|
|
import org.jetbrains.annotations.Contract;
|
|
|
|
class a {
|
|
private void run() {
|
|
}
|
|
|
|
@Contract(pure = true)
|
|
private Object dodo() {
|
|
return null;
|
|
}
|
|
}
|
|
|