in core/src/main/java/org/adoptopenjdk/jitwatch/model/MemberSignatureParts.java [645:732]
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (obj == null)
{
return false;
}
if (getClass() != obj.getClass())
{
return false;
}
MemberSignatureParts other = (MemberSignatureParts) obj;
if (fullyQualifiedClassName == null)
{
if (other.fullyQualifiedClassName != null)
{
return false;
}
}
else if (!fullyQualifiedClassName.equals(other.fullyQualifiedClassName))
{
return false;
}
if (memberName == null)
{
if (other.memberName != null)
{
return false;
}
}
else if (!memberName.equals(other.memberName))
{
return false;
}
/*
if (modifier != other.modifier)
{
return false;
}
if (modifierList == null)
{
if (other.modifierList != null)
{
return false;
}
}
else if (!modifierList.equals(other.modifierList))
{
return false;
}
*/
if (paramTypeList == null)
{
if (other.paramTypeList != null)
{
return false;
}
}
else if (!paramTypeList.equals(other.paramTypeList))
{
return false;
}
if (returnType == null)
{
if (other.returnType != null)
{
return false;
}
}
else if (!returnType.equals(other.returnType))
{
return false;
}
return true;
}