in extscript-core-root/extscript-core/src/main/java/org/apache/myfaces/extensions/scripting/jsf/resources/deprecated/ResourceHandlerCache.java [167:198]
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ResourceKey other = (ResourceKey) obj;
if (contentType == null)
{
if (other.contentType != null)
return false;
}
else if (!contentType.equals(other.contentType))
return false;
if (libraryName == null)
{
if (other.libraryName != null)
return false;
}
else if (!libraryName.equals(other.libraryName))
return false;
if (resourceName == null)
{
if (other.resourceName != null)
return false;
}
else if (!resourceName.equals(other.resourceName))
return false;
return true;
}