I will try again.


This compiles and runs well:
public class IntegerTest implements Comparator<Integer>{
@Override
public int compare(Integer o1, Integer o2){
return (o1<o2 ? -1 : (o1==o2 ?...