Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java
index 3ca673b8ac5..4ca0794ec1a 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionProposalSorter.java
@@ -19,14 +19,14 @@ package org.eclipse.jface.text.contentassist;
* needed. See {@link ContentAssistant#setSorter(ICompletionProposalSorter)} for more information on
* how to register a proposal sorter.
* </p>
- *
+ *
* @since 3.8
*/
public interface ICompletionProposalSorter {
/**
* The orderings imposed by an implementation need not be consistent with equals.
- *
+ *
* @param p1 the first proposal to be compared
* @param p2 the second proposal to be compared
* @return a negative integer, zero, or a positive integer as the first argument is less than,

Back to the top