/hg/release/icedtea-web-1.6: Fix policyeditor file flag to work ...
jkang at icedtea.classpath.org
jkang at icedtea.classpath.org
Mon May 4 12:58:11 UTC 2015
changeset 9cfc396945d1 in /hg/release/icedtea-web-1.6
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=9cfc396945d1
author: Jie Kang <jkang at redhat.com>
date: Mon May 04 08:48:43 2015 -0400
Fix policyeditor file flag to work when used standalone
2015-04-30 Jie Kang <jkang at redhat.com>
Fix policyeditor file flag to work when used standalone
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java:
(main): filepath no longer set to null when file flag has parameter and
there is no main argument
diffstat:
ChangeLog | 7 +++++
netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java | 12 +++++----
2 files changed, 14 insertions(+), 5 deletions(-)
diffs (36 lines):
diff -r d62fab3ea0c1 -r 9cfc396945d1 ChangeLog
--- a/ChangeLog Wed Apr 29 11:34:14 2015 +0200
+++ b/ChangeLog Mon May 04 08:48:43 2015 -0400
@@ -1,3 +1,10 @@
+2015-05-04 Jie Kang <jkang at redhat.com>
+
+ Fix policyeditor file flag to work when used standalone
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java:
+ (main): filepath no longer set to null when file flag has parameter and
+ there is no main argument
+
2015-04-29 Jiri Vanek <jvanek at redhat.com>
1.6 post-release operations
diff -r d62fab3ea0c1 -r 9cfc396945d1 netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java
--- a/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java Wed Apr 29 11:34:14 2015 +0200
+++ b/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java Mon May 04 08:48:43 2015 -0400
@@ -1629,11 +1629,13 @@
@Override
public void run() {
String filepath = optionParser.getParam(OptionsDefinitions.OPTIONS.FILE);
- if (optionParser.getMainArgs().size() == 0) {
- filepath = null;
- } else if (filepath.isEmpty()) {
- // maybe the user just forgot the -file flag, so try to open anyway
- filepath = optionParser.getMainArg();
+ if (filepath.isEmpty()) {
+ if (optionParser.getMainArgs().size() == 0) {
+ filepath = null;
+ } else {
+ // maybe the user just forgot the -file flag, so try to open anyway
+ filepath = optionParser.getMainArg();
+ }
}
final PolicyEditorWindow frame = getPolicyEditorFrame(filepath);
frame.asWindow().setVisible(true);
More information about the distro-pkg-dev
mailing list