< prev index next >

src/share/vm/classfile/klassFactory.hpp

Print this page

        

@@ -66,20 +66,20 @@
   friend class ClassLoader;
   friend class ClassLoaderExt;
   friend class SystemDictionary;
 
  private:
-  static instanceKlassHandle create_from_stream(ClassFileStream* stream,
+  static InstanceKlass* create_from_stream(ClassFileStream* stream,
                                                 Symbol* name,
                                                 ClassLoaderData* loader_data,
                                                 Handle protection_domain,
                                                 const InstanceKlass* host_klass,
                                                 GrowableArray<Handle>* cp_patches,
                                                 TRAPS);
  public:
-  static instanceKlassHandle check_shared_class_file_load_hook(
-                                          instanceKlassHandle ik,
+  static InstanceKlass* check_shared_class_file_load_hook(
+                                          InstanceKlass* ik,
                                           Symbol* class_name,
                                           Handle class_loader,
                                           Handle protection_domain, TRAPS);
 };
 
< prev index next >