X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/phpdoc/PHPDocCompletionProcessor.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/phpdoc/PHPDocCompletionProcessor.java index 8053a3a..06342b2 100644 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/phpdoc/PHPDocCompletionProcessor.java +++ b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/phpdoc/PHPDocCompletionProcessor.java @@ -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;