in apache-whisker-scan/src/main/java/org/apache/creadur/whisker/scan/Directory.java [126:131]
public int compareTo(final Directory other) {
if (other == null) {
return -1;
}
return this.name.compareTo(other.name);
}