Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / flow / UnconditionalFlowInfo.java
index 6907f62..2ced1f8 100644 (file)
@@ -13,7 +13,7 @@ package net.sourceforge.phpdt.internal.compiler.flow;
 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
 import net.sourceforge.phpdt.internal.compiler.lookup.FieldBinding;
 import net.sourceforge.phpdt.internal.compiler.lookup.LocalVariableBinding;
-import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
+//import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
 
 /**
  * Record initialization status during definite assignment analysis
@@ -572,16 +572,16 @@ public class UnconditionalFlowInfo extends FlowInfo {
        /*
         * Answer the total number of fields in enclosing types of a given type
         */
-       static int numberOfEnclosingFields(ReferenceBinding type) {
-
-               int count = 0;
-               type = type.enclosingType();
-               while (type != null) {
-                       count += type.fieldCount();
-                       type = type.enclosingType();
-               }
-               return count;
-       }
+//     static int numberOfEnclosingFields(ReferenceBinding type) {
+//
+//             int count = 0;
+//             type = type.enclosingType();
+//             while (type != null) {
+//                     count += type.fieldCount();
+//                     type = type.enclosingType();
+//             }
+//             return count;
+//     }
 
        public int reachMode() {
                return this.reachMode;