mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
13 lines
283 B
Java
13 lines
283 B
Java
public class Main {
|
|
public <T> T getAttribute() {return null;}
|
|
public <T> T getAttribute(T def) {return null;}
|
|
|
|
{
|
|
if (getAttribute()) {}
|
|
|
|
while (getAttribute()) {}
|
|
do {} while (getAttribute());
|
|
for(int i = 0; getAttribute(); i++);
|
|
}
|
|
}
|