@@ -1127,30 +1127,30 @@ public boolean equals(Object other) {
1127
1127
return false ;
1128
1128
}
1129
1129
AbstractBeanDefinition that = (AbstractBeanDefinition ) other ;
1130
- boolean rtn = ObjectUtils .nullSafeEquals (getBeanClassName (), that .getBeanClassName ());
1131
- rtn = rtn && ObjectUtils .nullSafeEquals (this .scope , that .scope );
1132
- rtn = rtn && this .abstractFlag == that .abstractFlag ;
1133
- rtn = rtn && this .lazyInit == that .lazyInit ;
1134
- rtn = rtn && this .autowireMode == that .autowireMode ;
1135
- rtn = rtn && this .dependencyCheck == that .dependencyCheck ;
1136
- rtn = rtn && Arrays .equals (this .dependsOn , that .dependsOn );
1137
- rtn = rtn && this .autowireCandidate == that .autowireCandidate ;
1138
- rtn = rtn && ObjectUtils .nullSafeEquals (this .qualifiers , that .qualifiers );
1139
- rtn = rtn && this .primary == that .primary ;
1140
- rtn = rtn && this .nonPublicAccessAllowed == that .nonPublicAccessAllowed ;
1141
- rtn = rtn && this .lenientConstructorResolution == that .lenientConstructorResolution ;
1142
- rtn = rtn && ObjectUtils .nullSafeEquals (this .constructorArgumentValues , that .constructorArgumentValues );
1143
- rtn = rtn && ObjectUtils .nullSafeEquals (this .propertyValues , that .propertyValues );
1144
- rtn = rtn && ObjectUtils .nullSafeEquals (this .methodOverrides , that .methodOverrides );
1145
- rtn = rtn && ObjectUtils .nullSafeEquals (this .factoryBeanName , that .factoryBeanName );
1146
- rtn = rtn && ObjectUtils .nullSafeEquals (this .factoryMethodName , that .factoryMethodName );
1147
- rtn = rtn && ObjectUtils .nullSafeEquals (this .initMethodName , that .initMethodName );
1148
- rtn = rtn && this .enforceInitMethod == that .enforceInitMethod ;
1149
- rtn = rtn && ObjectUtils .nullSafeEquals (this .destroyMethodName , that .destroyMethodName );
1150
- rtn = rtn && this .enforceDestroyMethod == that .enforceDestroyMethod ;
1151
- rtn = rtn && this .synthetic == that .synthetic ;
1152
- rtn = rtn && this .role == that .role ;
1153
- return rtn && super .equals (other );
1130
+ return ( ObjectUtils .nullSafeEquals (getBeanClassName (), that .getBeanClassName ()) &&
1131
+ ObjectUtils .nullSafeEquals (this .scope , that .scope ) &&
1132
+ this .abstractFlag == that .abstractFlag &&
1133
+ this .lazyInit == that .lazyInit &&
1134
+ this .autowireMode == that .autowireMode &&
1135
+ this .dependencyCheck == that .dependencyCheck &&
1136
+ Arrays .equals (this .dependsOn , that .dependsOn ) &&
1137
+ this .autowireCandidate == that .autowireCandidate &&
1138
+ ObjectUtils .nullSafeEquals (this .qualifiers , that .qualifiers ) &&
1139
+ this .primary == that .primary &&
1140
+ this .nonPublicAccessAllowed == that .nonPublicAccessAllowed &&
1141
+ this .lenientConstructorResolution == that .lenientConstructorResolution &&
1142
+ ObjectUtils .nullSafeEquals (this .constructorArgumentValues , that .constructorArgumentValues ) &&
1143
+ ObjectUtils .nullSafeEquals (this .propertyValues , that .propertyValues ) &&
1144
+ ObjectUtils .nullSafeEquals (this .methodOverrides , that .methodOverrides ) &&
1145
+ ObjectUtils .nullSafeEquals (this .factoryBeanName , that .factoryBeanName ) &&
1146
+ ObjectUtils .nullSafeEquals (this .factoryMethodName , that .factoryMethodName ) &&
1147
+ ObjectUtils .nullSafeEquals (this .initMethodName , that .initMethodName ) &&
1148
+ this .enforceInitMethod == that .enforceInitMethod &&
1149
+ ObjectUtils .nullSafeEquals (this .destroyMethodName , that .destroyMethodName ) &&
1150
+ this .enforceDestroyMethod == that .enforceDestroyMethod &&
1151
+ this .synthetic == that .synthetic &&
1152
+ this .role == that .role &&
1153
+ super .equals (other ) );
1154
1154
}
1155
1155
1156
1156
@ Override
0 commit comments