File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/apache/ibatis/reflection Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ private void addFields(Class<?> clazz) {
243
243
// modification of final fields through reflection (JSR-133). (JGB)
244
244
// pr #16 - final static can only be set by the classloader
245
245
int modifiers = field .getModifiers ();
246
- if (( !Modifier .isFinal (modifiers ) || !Modifier .isStatic (modifiers ) )) {
246
+ if (!Modifier .isFinal (modifiers ) || !Modifier .isStatic (modifiers )) {
247
247
addSetField (field );
248
248
}
249
249
}
@@ -273,7 +273,7 @@ private void addGetField(Field field) {
273
273
}
274
274
275
275
private boolean isValidPropertyName (String name ) {
276
- return ( !name .startsWith ("$" ) && !"serialVersionUID" .equals (name ) && !"class" .equals (name ) );
276
+ return !name .startsWith ("$" ) && !"serialVersionUID" .equals (name ) && !"class" .equals (name );
277
277
}
278
278
279
279
/**
You can’t perform that action at this time.
0 commit comments