()
| 24 | } |
| 25 | |
| 26 | public void storeOfNull() { |
| 27 | for (int i = 0; i < 10; i++) { |
| 28 | HashSet<Integer> set = new HashSet<Integer>(); |
| 29 | set.add(i); |
| 30 | System.out.println(set.hashCode()); |
| 31 | set = null; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | public int finalLocalDNR(int a) { |
| 36 | final int SCAN = 0; // <<---- complains about this line |