1 package prefuse.util.collections;2 3 import java.util.Comparator ;4 5 /**6 * A do-nothing comparator that simply treats all objects as equal.7 * @author <a HREF="http://jheer.org">jeffrey heer</a>8 */9 public class NullComparator implements Comparator {10 11 public int compare(Object o1, Object o2) {12 return 0;13 }14 15 } // end of class NullComparator16