hotspot/src/share/vm/prims/jvmtiExport.cpp
changeset 4571 80b553bddc26
parent 3581 c84159af60dd
child 4573 6358f8c9ed3b
--- a/hotspot/src/share/vm/prims/jvmtiExport.cpp	Tue Jan 05 11:16:09 2010 -0800
+++ b/hotspot/src/share/vm/prims/jvmtiExport.cpp	Wed Jan 06 14:22:39 2010 -0800
@@ -627,7 +627,7 @@
   klassOop k = obj->klass();
 
   // if the object is a java.lang.Class then return the java mirror
-  if (k == SystemDictionary::class_klass()) {
+  if (k == SystemDictionary::Class_klass()) {
     if (!java_lang_Class::is_primitive(obj)) {
       k = java_lang_Class::as_klassOop(obj);
       assert(k != NULL, "class for non-primitive mirror must exist");
@@ -1896,7 +1896,7 @@
       if (collector != NULL && collector->is_enabled()) {
         // Don't record classes as these will be notified via the ClassLoad
         // event.
-        if (obj->klass() != SystemDictionary::class_klass()) {
+        if (obj->klass() != SystemDictionary::Class_klass()) {
           collector->record_allocation(obj);
         }
       }