jdk/src/share/classes/java/awt/color/ICC_Profile.java
changeset 8197 e45f21c2a40b
parent 5506 202f599c92aa
child 8552 f36470084574
--- a/jdk/src/share/classes/java/awt/color/ICC_Profile.java	Wed Jul 05 17:32:52 2017 +0200
+++ b/jdk/src/share/classes/java/awt/color/ICC_Profile.java	Wed Feb 09 09:19:33 2011 -0500
@@ -1856,13 +1856,6 @@
             File.separatorChar + "lib" + File.separatorChar + "cmm";
         String fullPath = dir + File.separatorChar + fileName;
         File f = new File(fullPath);
-        if (!f.isFile()) {
-            //make sure file was installed in the kernel mode
-            BootClassLoaderHook hook = BootClassLoaderHook.getHook();
-            if (hook != null) {
-                hook.prefetchFile("lib/cmm/"+fileName);
-            }
-        }
         return (f.isFile() && isChildOf(f, dir)) ? f : null;
     }