ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/LinkedHashMap/EmptyMapIterator.java
(Generate patch)

Comparing jsr166/src/test/jtreg/util/LinkedHashMap/EmptyMapIterator.java (file contents):
Revision 1.4 by jsr166, Sun Oct 22 02:59:18 2017 UTC vs.
Revision 1.5 by jsr166, Sun Jan 7 20:29:15 2018 UTC

# Line 32 | Line 32 | import java.util.*;
32   public class EmptyMapIterator {
33      public static void main(String[] args) throws Exception {
34          HashMap map = new HashMap();
35 <        Iterator iter = iter = map.entrySet().iterator();
35 >        Iterator iter = map.entrySet().iterator();
36          map.put("key", "value");
37  
38          try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines