< prev index next >

src/hotspot/share/classfile/classLoaderData.hpp

klass is_unloading no cache v3
 
   inline oop class_loader() const;
 
   // Returns true if this class loader data is for a loader going away.
   // Note that this is only safe after the GC has computed if the CLD is
-  // unloaded or not. In concurrent contexts where there are no such
+  // unloading or not. In concurrent contexts where there are no such
   // guarantees, is_alive() should be used instead.
   bool is_unloading() const     {
     assert(!(is_the_null_class_loader_data() && _unloading), "The null class loader can never be unloaded");
     return _unloading;
   }
    
< prev index next >