/hg/icedtea-web: Hide unsupported options in itw-settings' secur...
asu at icedtea.classpath.org
asu at icedtea.classpath.org
Tue Jan 4 08:24:22 PST 2011
changeset 5c8851b13c04 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=5c8851b13c04
author: Andrew Su <asu at redhat.com>
date: Tue Jan 04 11:23:15 2011 -0500
Hide unsupported options in itw-settings' security options.
diffstat:
2 files changed, 13 insertions(+), 8 deletions(-)
ChangeLog | 5 +++
netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java | 16 +++++-----
diffs (40 lines):
diff -r c7922247b6d2 -r 5c8851b13c04 ChangeLog
--- a/ChangeLog Thu Dec 23 16:55:17 2010 -0500
+++ b/ChangeLog Tue Jan 04 11:23:15 2011 -0500
@@ -1,3 +1,8 @@ 2010-12-23 Andrew Su <asu at redhat.com>
+2011-01-04 Andrew Su <asu at redhat.com>
+
+ * netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java:
+ (addComponents): Hide unsupported options.
+
2010-12-23 Andrew Su <asu at redhat.com>
* netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java:
diff -r c7922247b6d2 -r 5c8851b13c04 netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java
--- a/netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java Thu Dec 23 16:55:17 2010 -0500
+++ b/netx/net/sourceforge/jnlp/controlpanel/SecuritySettingsPanel.java Tue Jan 04 11:23:15 2011 -0500
@@ -114,16 +114,16 @@ public class SecuritySettingsPanel exten
// Only display the ones with properties that are valid or existent.
for (int i = 0; i < properties.length; i++) {
- try {
- String s = config.getProperty(properties[i]);
- securityGeneralOptions[i].setSelected(Boolean.parseBoolean(s));
- securityGeneralOptions[i].setActionCommand(properties[i]);
- securityGeneralOptions[i].addActionListener(this);
- c.gridy = i + 1;
- topPanel.add(securityGeneralOptions[i], c);
- } catch (Exception e) {
+ String s = config.getProperty(properties[i]);
+ if (s == null) {
securityGeneralOptions[i] = null;
+ continue;
}
+ securityGeneralOptions[i].setSelected(Boolean.parseBoolean(s));
+ securityGeneralOptions[i].setActionCommand(properties[i]);
+ securityGeneralOptions[i].addActionListener(this);
+ c.gridy = i + 1;
+ topPanel.add(securityGeneralOptions[i], c);
}
Component filler = Box.createRigidArea(new Dimension(1, 1));
More information about the distro-pkg-dev
mailing list