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 589134f commit 794564eCopy full SHA for 794564e
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/DynamicHub.java
@@ -322,7 +322,8 @@ public void setModule(Module module) {
322
@Substitute @InjectAccessors(AnnotationTypeAccessors.class) //
323
private AnnotationType annotationType;
324
325
- @Substitute private static long serialVersionUID;
+ // This field has a fixed value 3206093459760846163L in java.lang.Class
326
+ @Substitute private static final long serialVersionUID = 3206093459760846163L;
327
328
@Substitute @InjectAccessors(CachedConstructorAccessors.class) //
329
private Constructor<?> cachedConstructor;
0 commit comments