73ea0e8460
#KT-15027 fixed
11 lines
371 B
Java
Vendored
11 lines
371 B
Java
Vendored
public class WithModifiersOnAccessors {
|
|
private synchronized void methSync() {}
|
|
protected strictfp void methStrict() {}
|
|
|
|
private int sync = 0;
|
|
public synchronized int getSync() { return sync; }
|
|
public synchronized void setSync(int sync) { this.sync = sync; }
|
|
|
|
public double strict = 0.0;
|
|
public strictfp double getStrict() { return strict; }
|
|
} |