6857870: Regression tests are failing with ExceptionInInitializerError
authordcherepanov
Thu, 23 Jul 2009 11:30:49 +0400
changeset 3246 7441718ff264
parent 3245 a6a0857bdeca
child 3247 662ed8cdd63a
6857870: Regression tests are failing with ExceptionInInitializerError Reviewed-by: art
jdk/src/windows/classes/sun/awt/windows/WToolkit.java
--- a/jdk/src/windows/classes/sun/awt/windows/WToolkit.java	Tue Jul 21 23:23:57 2009 -0700
+++ b/jdk/src/windows/classes/sun/awt/windows/WToolkit.java	Thu Jul 23 11:30:49 2009 +0400
@@ -886,14 +886,12 @@
      * this should be done in lazilyLoadDesktopProperty() only.
      */
     protected synchronized void initializeDesktopProperties() {
-        desktopProperties.put("DnD.Autoscroll.initialDelay",     Integer.valueOf(50));
-        desktopProperties.put("DnD.Autoscroll.interval",         Integer.valueOf(50));
-
-        try {
-            desktopProperties.put("Shell.shellFolderManager",
-                                  Class.forName("sun.awt.shell.Win32ShellFolderManager2"));
-        } catch (ClassNotFoundException ex) {
-        }
+        desktopProperties.put("DnD.Autoscroll.initialDelay",
+                              Integer.valueOf(50));
+        desktopProperties.put("DnD.Autoscroll.interval",
+                              Integer.valueOf(50));
+        desktopProperties.put("Shell.shellFolderManager",
+                              "sun.awt.shell.Win32ShellFolderManager2");
     }
 
     /*