We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6903c2 commit 339b2efCopy full SHA for 339b2ef
src/main/java/com/comphenix/protocol/wrappers/AutoWrapper.java
@@ -151,6 +151,7 @@ private void computeFieldAccessors() {
151
if (wrapperAccessors == null) {
152
wrapperAccessors = Arrays
153
.stream(wrapperClass.getDeclaredFields())
154
+ .filter(field -> !Modifier.isStatic(field.getModifiers()))
155
.map(Accessors::getFieldAccessor)
156
.toArray(FieldAccessor[]::new);
157
}
0 commit comments