hotspot/src/share/vm/prims/jvmtiEnvBase.cpp
changeset 10546 e79347eebbc5
parent 8725 8c1e3dd5fe1b
child 13195 be27e1b6a4b9
--- a/hotspot/src/share/vm/prims/jvmtiEnvBase.cpp	Sat Sep 10 00:11:04 2011 -0700
+++ b/hotspot/src/share/vm/prims/jvmtiEnvBase.cpp	Sat Sep 10 17:29:02 2011 -0700
@@ -565,15 +565,6 @@
 }
 
 
-// update the access_flags for the field in the klass
-void
-JvmtiEnvBase::update_klass_field_access_flag(fieldDescriptor *fd) {
-  instanceKlass* ik = instanceKlass::cast(fd->field_holder());
-  typeArrayOop fields = ik->fields();
-  fields->ushort_at_put(fd->index(), (jushort)fd->access_flags().as_short());
-}
-
-
 // return the vframe on the specified thread and depth, NULL if no such frame
 vframe*
 JvmtiEnvBase::vframeFor(JavaThread* java_thread, jint depth) {