| 4 | private int x; |
| 5 | |
| 6 | class Inner { |
| 7 | @ExpectWarning("IMA_INEFFICIENT_MEMBER_ACCESS") |
| 8 | public int f() { |
| 9 | synchronized (InnerIS.this) { |
| 10 | return x; |
| 11 | } |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | public synchronized int get() { |
| 16 | return x; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…