public boolean equals()

in core/src/main/java/org/adoptopenjdk/jitwatch/hotthrow/HotThrowResult.java [59:87]


	public boolean equals(Object obj)
	{
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		HotThrowResult other = (HotThrowResult) obj;
		if (bci != other.bci)
			return false;
		if (exceptionType == null)
		{
			if (other.exceptionType != null)
				return false;
		}
		else if (!exceptionType.equals(other.exceptionType))
			return false;
		if (member == null)
		{
			if (other.member != null)
				return false;
		}
		else if (!member.equals(other.member))
			return false;
		if (preallocated != other.preallocated)
			return false;
		return true;
	}