public boolean equals()

in core/src/main/java/org/adoptopenjdk/jitwatch/model/bytecode/LineAnnotation.java [55:82]


	public boolean equals(Object obj)
	{
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		LineAnnotation other = (LineAnnotation) obj;
		if (annotation == null)
		{
			if (other.annotation != null)
				return false;
		}
		else if (!annotation.equals(other.annotation))
			return false;

		if (metaData == null)
		{
			if (other.metaData != null)
				return false;
		}
		else if (!metaData.equals(other.metaData))
			return false;
		if (type != other.type)
			return false;
		return true;
	}