Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 298047 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java (-2 / +2 lines)
Lines 59-66 Link Here
59
	public boolean equals(Object obj) {
59
	public boolean equals(Object obj) {
60
		if (this == obj)
60
		if (this == obj)
61
			return true;
61
			return true;
62
		if (obj == null || !(obj instanceof SimpleArtifactDescriptor))
62
		if (!(obj instanceof SimpleArtifactDescriptor))
63
			return false;
63
			return super.equals(obj);
64
64
65
		SimpleArtifactDescriptor other = (SimpleArtifactDescriptor) obj;
65
		SimpleArtifactDescriptor other = (SimpleArtifactDescriptor) obj;
66
66

Return to bug 298047