--- old/src/java.desktop/share/classes/java/awt/GraphicsEnvironment.java 2014-08-21 20:50:23.338589400 +0400 +++ new/src/java.desktop/share/classes/java/awt/GraphicsEnvironment.java 2014-08-21 20:50:23.136577800 +0400 @@ -97,11 +97,11 @@ // long t0 = System.currentTimeMillis(); Class geCls; try { - // First we try if the bootclassloader finds the requested + // First we try if the bootstrap classloader finds the requested // class. This way we can avoid to run in a privileged block. geCls = Class.forName(nm); } catch (ClassNotFoundException ex) { - // If the bootclassloader fails, we try again with the + // If the bootstrap classloader fails, we try again with the // application classloader. ClassLoader cl = ClassLoader.getSystemClassLoader(); geCls = Class.forName(nm, true, cl);