: > looks like it has to be a jetty issue, stack trace...
: I get the trace on jetty but not in resin.
I thought maybe we were tickling some particulararly tricky bug by using
an anonymous impl of Comparator<List<Tok>> ... but even if we declare a
"real" class....
public static class TokComparator implements Comparator<List<Tok>> {
public int compare(List<Tok> toks, List<Tok> toks1) {
return toks.get(0).pos - toks1.get(0).pos;
}
}
...Jetty freaks out that "compare(Ljava/lang/Object;Ljava/lang/Object;)"
is an abstract method.
-Hoss