提交 fd1b4813 编写于 作者: P Phillip Webb

Polish

上级 bb5a53f7
...@@ -245,10 +245,10 @@ public final class Property { ...@@ -245,10 +245,10 @@ public final class Property {
public int hashCode() { public int hashCode() {
final int prime = 31; final int prime = 31;
int hashCode = 1; int hashCode = 1;
hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(objectType); hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(this.objectType);
hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(readMethod); hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(this.readMethod);
hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(writeMethod); hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(this.writeMethod);
hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(name); hashCode = prime * hashCode + ObjectUtils.nullSafeHashCode(this.name);
return hashCode; return hashCode;
} }
...@@ -265,10 +265,10 @@ public final class Property { ...@@ -265,10 +265,10 @@ public final class Property {
} }
Property other = (Property) obj; Property other = (Property) obj;
boolean equals = true; boolean equals = true;
equals &= ObjectUtils.nullSafeEquals(objectType, other.objectType); equals &= ObjectUtils.nullSafeEquals(this.objectType, other.objectType);
equals &= ObjectUtils.nullSafeEquals(readMethod, other.readMethod); equals &= ObjectUtils.nullSafeEquals(this.readMethod, other.readMethod);
equals &= ObjectUtils.nullSafeEquals(writeMethod, other.writeMethod); equals &= ObjectUtils.nullSafeEquals(this.writeMethod, other.writeMethod);
equals &= ObjectUtils.nullSafeEquals(name, other.name); equals &= ObjectUtils.nullSafeEquals(this.name, other.name);
return equals; return equals;
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册