You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SerializableTypeWrapper restores type accessor methods on deserialization. It does so against the concrete type implementation at this point which breaks on JDK 9 due to an enforced visibility barrier. Resolving the method against the declaring interface is more appropriate in any case and also solves the JDK 9 issue.