mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
16 lines
217 B
Java
16 lines
217 B
Java
import java.util.*;
|
|
|
|
class Outer {
|
|
private final int value = calcValue();
|
|
|
|
int myValue;
|
|
Set set = new HashSet();
|
|
|
|
int calcValue() {
|
|
return set.size();
|
|
}
|
|
|
|
void initMyValue() {
|
|
myValue = value;
|
|
}
|
|
} |