--- jsr166/src/main/java/util/Sorted.java 2003/05/19 02:45:07 1.1 +++ jsr166/src/main/java/util/Sorted.java 2003/05/27 18:20:06 1.2 @@ -1,11 +1,12 @@ -package java.util; + package java.util; /** * Mixin interface used by collections, maps, and similar objects to * indicate that their elements or mappings are stored in sorted * order. */ -public interface Sorted { + +public interface Sorted { /** * Returns the comparator used to order this collection, or null * if this collection is sorted according to its elements natural ordering. @@ -13,5 +14,5 @@ public interface Sorted { * @return the comparator used to order this collection, or null * if this collection is sorted according to its elements natural ordering. */ - Comparator comparator(); -} \ No newline at end of file + Comparator comparator(); +}