Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / Analysis / TaskStateAnalysis / GarbageAnalysis.java
index c7c7aa845ea7f052c069a459e01532a78de0e578..8045bd7affc3ddcec531b9fd5139cedd9189fee5 100644 (file)
@@ -21,7 +21,7 @@ public class GarbageAnalysis extends Namer {
   }
 
   public void doAnalysis() {
-    for(Iterator it=state.getClassSymbolTable().getDescriptorsIterator(); it.hasNext();) {
+    for(Iterator it=state.getClassSymbolTable().getDescriptorsIterator(); it.hasNext(); ) {
       ClassDescriptor cd=(ClassDescriptor) it.next();
       if (taskanalysis.getFlagStates(cd)==null)
        continue;
@@ -34,7 +34,7 @@ public class GarbageAnalysis extends Namer {
     HashSet garbage=new HashSet();
     HashSet possiblegarbage=new HashSet();
 
-    for(Iterator fsit=flagstatenodes.iterator(); fsit.hasNext();) {
+    for(Iterator fsit=flagstatenodes.iterator(); fsit.hasNext(); ) {
       FlagState fs=(FlagState)fsit.next();
       if (fs.numedges()==0)
        garbage.add(fs);