We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e710641 + 401ea2c commit ed13ef7Copy full SHA for ed13ef7
src/main/java/org/javawebstack/abstractdata/mapper/MapperTypeSpec.java
@@ -98,6 +98,7 @@ public List<FieldSpec> getFieldSpecs() {
98
}
99
100
public Field getAdditionalField() {
101
+ additionalField.setAccessible(true);
102
return additionalField;
103
104
@@ -112,6 +113,7 @@ public static class FieldSpec {
112
113
private Map<Class<? extends Annotation>, List<Annotation>> annotations = new HashMap<>();
114
115
public Field getField() {
116
+ field.setAccessible(true);
117
return field;
118
119
0 commit comments