Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java
index 9d883b42c0..657f6f3932 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ClasspathAttribute.java
@@ -14,15 +14,15 @@ import org.eclipse.jdt.core.IClasspathAttribute;
import org.eclipse.jdt.internal.core.util.Util;
public class ClasspathAttribute implements IClasspathAttribute {
-
+
private String name;
private String value;
-
+
public ClasspathAttribute(String name, String value) {
this.name = name;
this.value = value;
}
-
+
public boolean equals(Object obj) {
if (!(obj instanceof ClasspathAttribute)) return false;
ClasspathAttribute other = (ClasspathAttribute) obj;
@@ -36,11 +36,11 @@ public class ClasspathAttribute implements IClasspathAttribute {
public String getValue() {
return this.value;
}
-
+
public int hashCode() {
return Util.combineHashCodes(this.name.hashCode(), this.value.hashCode());
}
-
+
public String toString() {
return this.name + "=" + this.value; //$NON-NLS-1$
}

Back to the top