in apache-whisker-scan/src/main/java/org/apache/creadur/whisker/scan/Directory.java [86:97]
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Directory other = (Directory) obj;
if (name == null) {
return other.name == null;
} else return name.equals(other.name);
}