Skip to content

Commit

Permalink
Tactical fix to temporarily allow EFX to build #745
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktindall committed Oct 19, 2023
1 parent 2dea048 commit 97be542
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ static class ObjectFieldAccess extends FieldAccess {
super(field, isLeaf);
asMarshallable = Jvm.findAnnotation(field, AsMarshallable.class);
type = field.getType();
resettable = !DynamicEnum.class.isAssignableFrom(type);
resettable = !DynamicEnum.class.isAssignableFrom(type) && Marshallable.class.isAssignableFrom(type);
}

@Override
Expand Down

0 comments on commit 97be542

Please sign in to comment.