< prev index next >

src/share/vm/classfile/classLoaderData.cpp

Print this page

        

@@ -572,11 +572,11 @@
 ClassLoaderData* ClassLoaderDataGraph::add(Handle loader, bool is_anonymous, TRAPS) {
   // We need to allocate all the oops for the ClassLoaderData before allocating the
   // actual ClassLoaderData object.
   ClassLoaderData::Dependencies dependencies(CHECK_NULL);
 
-  No_Safepoint_Verifier no_safepoints; // we mustn't GC until we've installed the
+  NoSafepointVerifier no_safepoints; // we mustn't GC until we've installed the
                                        // ClassLoaderData in the graph since the CLD
                                        // contains unhandled oops
 
   ClassLoaderData* cld = new ClassLoaderData(loader, is_anonymous, dependencies);
 
< prev index next >