removed unused private methods.
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpdt / internal / ui / text / phpdoc / PHPDocCompletionProcessor.java
index 8053a3a..06342b2 100644 (file)
@@ -30,14 +30,14 @@ import org.eclipse.ui.IEditorPart;
  */
 public class PHPDocCompletionProcessor implements IContentAssistProcessor {
 
-       private static class PHPDocCompletionProposalComparator implements
-                       Comparator {
-               public int compare(Object o1, Object o2) {
-                       ICompletionProposal c1 = (ICompletionProposal) o1;
-                       ICompletionProposal c2 = (ICompletionProposal) o2;
-                       return c1.getDisplayString().compareTo(c2.getDisplayString());
-               }
-       };
+//     private static class PHPDocCompletionProposalComparator implements
+//                     Comparator {
+//             public int compare(Object o1, Object o2) {
+//                     ICompletionProposal c1 = (ICompletionProposal) o1;
+//                     ICompletionProposal c2 = (ICompletionProposal) o2;
+//                     return c1.getDisplayString().compareTo(c2.getDisplayString());
+//             }
+//     };
 
        // private IEditorPart fEditor;
        // private IWorkingCopyManager fManager;