@@ -48,7 +48,7 @@ public class Reflector {
48
48
49
49
private final Class <?> type ;
50
50
private final String [] readablePropertyNames ;
51
- private final String [] writeablePropertyNames ;
51
+ private final String [] writablePropertyNames ;
52
52
private final Map <String , Invoker > setMethods = new HashMap <>();
53
53
private final Map <String , Invoker > getMethods = new HashMap <>();
54
54
private final Map <String , Class <?>> setTypes = new HashMap <>();
@@ -64,11 +64,11 @@ public Reflector(Class<?> clazz) {
64
64
addSetMethods (clazz );
65
65
addFields (clazz );
66
66
readablePropertyNames = getMethods .keySet ().toArray (new String [getMethods .keySet ().size ()]);
67
- writeablePropertyNames = setMethods .keySet ().toArray (new String [setMethods .keySet ().size ()]);
67
+ writablePropertyNames = setMethods .keySet ().toArray (new String [setMethods .keySet ().size ()]);
68
68
for (String propName : readablePropertyNames ) {
69
69
caseInsensitivePropertyMap .put (propName .toUpperCase (Locale .ENGLISH ), propName );
70
70
}
71
- for (String propName : writeablePropertyNames ) {
71
+ for (String propName : writablePropertyNames ) {
72
72
caseInsensitivePropertyMap .put (propName .toUpperCase (Locale .ENGLISH ), propName );
73
73
}
74
74
}
@@ -440,7 +440,7 @@ public String[] getGetablePropertyNames() {
440
440
* @return The array
441
441
*/
442
442
public String [] getSetablePropertyNames () {
443
- return writeablePropertyNames ;
443
+ return writablePropertyNames ;
444
444
}
445
445
446
446
/**
0 commit comments