Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / CompilationResult.java
index 4d0704c..bb11974 100644 (file)
@@ -94,7 +94,7 @@ public class CompilationResult {
 
        private int computePriority(IProblem problem) {
 
-               final int P_STATIC = 1000;
+               //final int P_STATIC = 1000;
                final int P_OUTSIDE_METHOD = 4000;
                final int P_FIRST_ERROR = 2000;
                final int P_ERROR = 10000;
@@ -283,20 +283,20 @@ public class CompilationResult {
                return this.tasks;
        }
 
-       public boolean hasErrors() {
-
-               if (problems != null)
-                       for (int i = 0; i < problemCount; i++) {
-                               if (problems[i].isError())
-                                       return true;
-                       }
-               return false;
-       }
-
-       public boolean hasProblems() {
-
-               return problemCount != 0;
-       }
+//     public boolean hasErrors() {
+//
+//             if (problems != null)
+//                     for (int i = 0; i < problemCount; i++) {
+//                             if (problems[i].isError())
+//                                     return true;
+//                     }
+//             return false;
+//     }
+
+//     public boolean hasProblems() {
+//
+//             return problemCount != 0;
+//     }
 
        public boolean hasSyntaxError() {
 
@@ -310,19 +310,19 @@ public class CompilationResult {
                return false;
        }
 
-       public boolean hasTasks() {
-               return this.taskCount != 0;
-       }
-
-       public boolean hasWarnings() {
-
-               if (problems != null)
-                       for (int i = 0; i < problemCount; i++) {
-                               if (problems[i].isWarning())
-                                       return true;
-                       }
-               return false;
-       }
+//     public boolean hasTasks() {
+//             return this.taskCount != 0;
+//     }
+
+//     public boolean hasWarnings() {
+//
+//             if (problems != null)
+//                     for (int i = 0; i < problemCount; i++) {
+//                             if (problems[i].isWarning())
+//                                     return true;
+//                     }
+//             return false;
+//     }
 
        private static void quickSort(IProblem[] list, int left, int right) {