1
1
/*
2
- * Copyright (c) 2012, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2012, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -44,14 +44,12 @@ private static synchronized void initialize(TypeDataBase db) throws WrongTypeExc
44
44
classLoaderFieldOffset = type .getAddressField ("_class_loader" ).getOffset ();
45
45
nextField = type .getAddressField ("_next" );
46
46
klassesField = new MetadataField (type .getAddressField ("_klasses" ), 0 );
47
- isUnsafeAnonymousField = new CIntField (type .getCIntegerField ("_is_unsafe_anonymous" ), 0 );
48
47
dictionaryField = type .getAddressField ("_dictionary" );
49
48
}
50
49
51
50
private static long classLoaderFieldOffset ;
52
51
private static AddressField nextField ;
53
52
private static MetadataField klassesField ;
54
- private static CIntField isUnsafeAnonymousField ;
55
53
private static AddressField dictionaryField ;
56
54
57
55
public ClassLoaderData (Address addr ) {
@@ -76,10 +74,6 @@ public Oop getClassLoader() {
76
74
return vmOopHandle .resolve ();
77
75
}
78
76
79
- public boolean getisUnsafeAnonymous () {
80
- return isUnsafeAnonymousField .getValue (this ) != 0 ;
81
- }
82
-
83
77
public ClassLoaderData next () {
84
78
return instantiateWrapperFor (nextField .getValue (getAddress ()));
85
79
}
0 commit comments