switch to spaces only..
[IRC.git] / Robust / src / ClassLibrary / HashMapIterator.java
index f540d335a78177e05d4f120048fa98d394893690..d3516022cb21cd0665b1db95fa2c7a33922c1ebc 100644 (file)
@@ -25,9 +25,9 @@ class HashMapIterator extends Iterator {
       he=he.next;
       Object o;
       if (type==0)
-       o=he.key;
+        o=he.key;
       else
-       o=he.value;
+        o=he.value;
       return o;
     }
     while((bin<map.table.length)&&
@@ -37,9 +37,9 @@ class HashMapIterator extends Iterator {
       he=map.table[bin++];
       Object o;
       if (type==0)
-       o=he.key;
+        o=he.key;
       else
-       o=he.value;
+        o=he.value;
       return o;
     } else System.error();
   }