/hg/icedtea-web: Removed call to set system look and feel for di...

asu at icedtea.classpath.org asu at icedtea.classpath.org
Thu Dec 23 13:55:29 PST 2010


changeset c7922247b6d2 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=c7922247b6d2
author: Andrew Su <asu at redhat.com>
date: Thu Dec 23 16:55:17 2010 -0500

	Removed call to set system look and feel for dialog.


diffstat:

2 files changed, 6 insertions(+), 12 deletions(-)
ChangeLog                                                               |    6 +++++
netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java |   12 ----------

diffs (39 lines):

diff -r ea073a7dafa1 -r c7922247b6d2 ChangeLog
--- a/ChangeLog	Thu Dec 23 16:45:37 2010 -0500
+++ b/ChangeLog	Thu Dec 23 16:55:17 2010 -0500
@@ -1,3 +1,9 @@ 2010-12-23  Andrew Su  <asu at redhat.com>
+2010-12-23  Andrew Su  <asu at redhat.com>
+
+	* netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java:
+	(showAdvancedProxySettingsDialog): Removed call to setSystemLookAndFeel().
+	(setSystemLookAndFeel): Method removed.
+
 2010-12-23  Andrew Su  <asu at redhat.com>
 
 	* netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java:
diff -r ea073a7dafa1 -r c7922247b6d2 netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
--- a/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java	Thu Dec 23 16:45:37 2010 -0500
+++ b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java	Thu Dec 23 16:55:17 2010 -0500
@@ -118,22 +118,10 @@ public class AdvancedProxySettingsDialog
      *            A loaded DeploymentConfiguration file.
      */
     public static void showAdvancedProxySettingsDialog(final DeploymentConfiguration config) {
-        setSystemLookAndFeel();
         AdvancedProxySettingsDialog psd = new AdvancedProxySettingsDialog(config);
         psd.setResizable(false);
         psd.centerDialog();
         psd.setVisible(true);
         psd.dispose();
     }
-
-    /**
-     * Set the look and feel.
-     */
-    private static void setSystemLookAndFeel() {
-        try {
-            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
-        } catch (Exception e) {
-            // don't worry if we can't.
-        }
-    }
 }



More information about the distro-pkg-dev mailing list