in modules/vfs-class-loader/src/main/java/org/apache/accumulo/classloader/vfs/context/ReloadingVFSContextClassLoaderFactory.java [103:117]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Contexts other = (Contexts) obj;
if (contexts == null) {
if (other.contexts != null)
return false;
} else if (!contexts.equals(other.contexts))
return false;
return true;
}