diff options
author | Adam Domurad <[email protected]> | 2013-04-11 10:02:11 -0400 |
---|---|---|
committer | Adam Domurad <[email protected]> | 2013-04-11 10:02:11 -0400 |
commit | 038866be9293d5194b04af3c98c71e5e66712cf2 (patch) | |
tree | ccc11c87c0bc7dbc0b9a31e39d8377d446e33bb5 /netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java | |
parent | 10d6ef89fcd4c6f31856df24a3b9e2cd1d637023 (diff) |
Allow for remembered unsigned trust based on codebase
Diffstat (limited to 'netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java b/netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java index 4860e52..7db6a19 100644 --- a/netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java +++ b/netx/net/sourceforge/jnlp/security/UnsignedAppletTrustWarningDialog.java @@ -37,8 +37,8 @@ exception statement from your version. package net.sourceforge.jnlp.security; import net.sourceforge.jnlp.PluginBridge; +import net.sourceforge.jnlp.security.UnsignedAppletTrustWarningPanel.UnsignedWarningAction; import net.sourceforge.jnlp.security.UnsignedAppletTrustWarningPanel.ActionChoiceListener; -import net.sourceforge.jnlp.security.appletextendedsecurity.ExecuteUnsignedApplet; /** * A panel that confirms that the user is OK with unsigned code running. @@ -52,7 +52,7 @@ public class UnsignedAppletTrustWarningDialog extends SecurityDialogPanel { add(new UnsignedAppletTrustWarningPanel(file, new ActionChoiceListener() { @Override - public void actionChosen(ExecuteUnsignedApplet action) { + public void actionChosen(UnsignedWarningAction action) { parent.setValue(action); parent.dispose(); } |