Anomaly identified by the detector. Please review whether this anomaly corresponds to a misuse.
Finding:
4
In File:
org/apache/lucene/index/TermBuffer.java
In Method:
compareTo(TermBuffer)
Code with Finding:
class TermBuffer {
public final int compareTo(TermBuffer other) {
if (field == other.field) // fields are interned
return compareChars(text.result, text.length, other.text.result, other.text.length);
else
return field.compareTo(other.field);
}
}