Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Sep 26, 2010
1 parent 003d1f2 commit dddb85e
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -20,7 +20,7 @@
/**
* A Sortable class is given a precedence which is used to decide it's relative order
*
* @author pmuir
* @author Pete Muir
*
*/
public interface Sortable
Expand All @@ -29,7 +29,7 @@ public interface Sortable
/**
* A comparator which can order Sortables
*
* @author pmuir
* @author Pete Muir
*
*/
public class Comparator implements java.util.Comparator<Sortable>
Expand All @@ -45,6 +45,6 @@ public int compare(Sortable arg1, Sortable arg2)
* considers itself amongst alternatives. A higher value is a higher
* precedence. If two implementations have the save precedence, the order is undetermined.
*/
public abstract int getPrecedence();
public int getPrecedence();

}

0 comments on commit dddb85e

Please sign in to comment.