--- old/src/share/classes/javax/swing/plaf/basic/LazyActionMap.java 2014-06-26 12:32:33.000000000 -0700 +++ new/src/share/classes/javax/swing/plaf/basic/LazyActionMap.java 2014-06-26 12:32:33.000000000 -0700 @@ -56,7 +56,7 @@ * @param defaultsKey Key to use to defaults table to check for * existing map and what resulting Map will be registered on. */ - static void installLazyActionMap(JComponent c, Class loaderClass, + static void installLazyActionMap(JComponent c, Class loaderClass, String defaultsKey) { ActionMap map = (ActionMap)UIManager.get(defaultsKey); if (map == null) { @@ -79,7 +79,7 @@ * @param defaultsKey Key to use to defaults table to check for * existing map and what resulting Map will be registered on. */ - static ActionMap getActionMap(Class loaderClass, + static ActionMap getActionMap(Class loaderClass, String defaultsKey) { ActionMap map = (ActionMap)UIManager.get(defaultsKey); if (map == null) { @@ -90,7 +90,7 @@ } - private LazyActionMap(Class loader) { + private LazyActionMap(Class loader) { _loader = loader; } @@ -146,7 +146,7 @@ Class klass = (Class)loader; try { Method method = klass.getDeclaredMethod("loadActionMap", - new Class[] { LazyActionMap.class }); + new Class[] { LazyActionMap.class }); method.invoke(klass, new Object[] { this }); } catch (NoSuchMethodException nsme) { assert false : "LazyActionMap unable to load actions " +