@@ -245,10 +245,10 @@ private Class<?> declaringClass() {
245
245
public int hashCode () {
246
246
final int prime = 31 ;
247
247
int hashCode = 1 ;
248
- hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (objectType );
249
- hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (readMethod );
250
- hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (writeMethod );
251
- hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (name );
248
+ hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (this . objectType );
249
+ hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (this . readMethod );
250
+ hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (this . writeMethod );
251
+ hashCode = prime * hashCode + ObjectUtils .nullSafeHashCode (this . name );
252
252
return hashCode ;
253
253
}
254
254
@@ -265,10 +265,10 @@ public boolean equals(Object obj) {
265
265
}
266
266
Property other = (Property ) obj ;
267
267
boolean equals = true ;
268
- equals &= ObjectUtils .nullSafeEquals (objectType , other .objectType );
269
- equals &= ObjectUtils .nullSafeEquals (readMethod , other .readMethod );
270
- equals &= ObjectUtils .nullSafeEquals (writeMethod , other .writeMethod );
271
- equals &= ObjectUtils .nullSafeEquals (name , other .name );
268
+ equals &= ObjectUtils .nullSafeEquals (this . objectType , other .objectType );
269
+ equals &= ObjectUtils .nullSafeEquals (this . readMethod , other .readMethod );
270
+ equals &= ObjectUtils .nullSafeEquals (this . writeMethod , other .writeMethod );
271
+ equals &= ObjectUtils .nullSafeEquals (this . name , other .name );
272
272
return equals ;
273
273
}
274
274
}
0 commit comments