/hg/release/icedtea-web-1.4: Backported warnings cleanups from head
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Fri Dec 13 04:22:19 PST 2013
changeset 94ff58f33514 in /hg/release/icedtea-web-1.4
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.4?cmd=changeset;node=94ff58f33514
author: Jiri Vanek <jvanek at redhat.com>
date: Fri Dec 13 13:28:55 2013 +0100
Backported warnings cleanups from head
itw itself warning cleanup: fixed rawtypes and unchecks, added braces and Override
unittests warning cleanup: fixed typechecks, rawtypes, redundant casts...
ScreenFinder fixed to work partially also in headless mode
kept comaptible with jdk6
After this clean up only "internal proprietary API and may be removed in a future release" warnings remain fro make check. Please keep itw in this way :)
diffstat:
ChangeLog | 71 +++
netx/net/sourceforge/jnlp/JREDesc.java | 16 +-
netx/net/sourceforge/jnlp/Launcher.java | 91 ++-
netx/net/sourceforge/jnlp/Node.java | 29 +-
netx/net/sourceforge/jnlp/Parser.java | 2 +-
netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java | 5 +-
netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java | 6 +-
netx/net/sourceforge/jnlp/controlpanel/CachePane.java | 10 +-
netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java | 8 +-
netx/net/sourceforge/jnlp/controlpanel/DebuggingPanel.java | 1 +
netx/net/sourceforge/jnlp/controlpanel/DesktopShortcutPanel.java | 3 +-
netx/net/sourceforge/jnlp/controlpanel/UnsignedAppletsTrustingListPanel.java | 7 +-
netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java | 42 +-
netx/net/sourceforge/jnlp/runtime/ApplicationInstance.java | 2 +-
netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | 8 +-
netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java | 54 +-
netx/net/sourceforge/jnlp/security/CertsInfoPane.java | 22 +-
netx/net/sourceforge/jnlp/security/appletextendedsecurity/impl/UnsignedAppletActionStorageImpl.java | 2 +-
netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java | 26 +-
netx/net/sourceforge/jnlp/services/ServiceUtil.java | 21 +-
netx/net/sourceforge/jnlp/splashscreen/impls/DefaultErrorSplashScreen2012.java | 12 +-
netx/net/sourceforge/jnlp/splashscreen/impls/defaultsplashscreen2012/NatCubic.java | 2 +-
netx/net/sourceforge/jnlp/splashscreen/impls/defaultsplashscreen2012/SplinesDefs.java | 10 +-
netx/net/sourceforge/jnlp/util/Reflect.java | 18 +-
netx/net/sourceforge/jnlp/util/ScreenFinder.java | 25 +-
netx/net/sourceforge/nanoxml/XMLElement.java | 4 +-
plugin/icedteanp/java/sun/applet/MethodOverloadResolver.java | 5 +-
plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java | 218 ++++++---
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java | 68 ++-
tests/junit-runner/CommandLine.java | 2 +-
tests/junit-runner/JunitLikeXmlOutputListener.java | 8 +-
tests/junit-runner/LessVerboseTextListener.java | 11 +-
tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java | 2 +-
tests/netx/unit/net/sourceforge/jnlp/PluginBridgeTest.java | 2 +-
tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java | 8 +-
tests/netx/unit/net/sourceforge/jnlp/splashscreen/ErrorSplashUtilsTest.java | 32 +-
tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java | 38 +-
tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/DescriptionInfoItemTest.java | 2 +-
tests/netx/unit/net/sourceforge/jnlp/util/UrlUtilsTest.java | 4 +-
tests/netx/unit/net/sourceforge/jnlp/util/XDesktopEntryTest.java | 4 +-
tests/netx/unit/net/sourceforge/jnlp/util/replacements/BASE64EncoderTest.java | 2 +-
tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java | 2 +-
tests/test-extensions/net/sourceforge/jnlp/ServerAccess.java | 4 +-
tests/test-extensions/net/sourceforge/jnlp/ThreadedProcess.java | 3 +-
tests/test-extensions/net/sourceforge/jnlp/awt/AWTHelper.java | 9 +-
tests/test-extensions/net/sourceforge/jnlp/awt/awtactions/KeyboardActions.java | 4 +-
tests/test-extensions/net/sourceforge/jnlp/closinglisteners/RulesFolowingClosingListener.java | 18 +-
47 files changed, 604 insertions(+), 339 deletions(-)
diffs (truncated from 3146 to 500 lines):
diff -r f055f0ed886d -r 94ff58f33514 ChangeLog
--- a/ChangeLog Mon Dec 09 13:25:24 2013 +0100
+++ b/ChangeLog Fri Dec 13 13:28:55 2013 +0100
@@ -1,3 +1,74 @@
+2013-12-13 Jiri Vanek <jvanek at redhat.com>
+
+ Made again compatible with JDK6.All JLists, JComboBoxs, and DefaultComboBoxModels
+ moved back to be not generics-like
+ * netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/DebuggingPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/DesktopShortcutPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/UnsignedAppletsTrustingListPanel.java
+ * netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java
+
+2013-12-13 Jiri Vanek <jvanek at redhat.com>
+
+ itw itself warning cleanup: fixed rawtypes and unchecks, added braces and Override
+ * netx/net/sourceforge/jnlp/JREDesc.java
+ * netx/net/sourceforge/jnlp/Launcher.java
+ * netx/net/sourceforge/jnlp/Node.java
+ * netx/net/sourceforge/jnlp/Parser.java
+ * netx/net/sourceforge/jnlp/PluginBridge.java
+ * netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java
+ * netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
+ * netx/net/sourceforge/jnlp/controlpanel/CachePane.java
+ * netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/DebuggingPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/DesktopShortcutPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java
+ * netx/net/sourceforge/jnlp/controlpanel/UnsignedAppletsTrustingListPanel.java
+ * netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java
+ * netx/net/sourceforge/jnlp/runtime/ApplicationInstance.java
+ * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
+ * netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
+ * netx/net/sourceforge/jnlp/security/CertWarningPane.java
+ * netx/net/sourceforge/jnlp/security/CertsInfoPane.java
+ * netx/net/sourceforge/jnlp/security/appletextendedsecurity/impl/UnsignedAppletActionStorageImpl.java
+ * netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java
+ * netx/net/sourceforge/jnlp/services/ServiceUtil.java
+ * netx/net/sourceforge/jnlp/splashscreen/impls/DefaultErrorSplashScreen2012.java
+ * netx/net/sourceforge/jnlp/splashscreen/impls/defaultsplashscreen2012/NatCubic.java
+ * netx/net/sourceforge/jnlp/splashscreen/impls/defaultsplashscreen2012/SplinesDefs.java
+ * netx/net/sourceforge/jnlp/util/Reflect.java
+ * netx/net/sourceforge/jnlp/util/ui/NonEditableTableModel.java
+ * netx/net/sourceforge/nanoxml/XMLElement.java
+ * plugin/icedteanp/java/sun/applet/MethodOverloadResolver.java
+ * plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java
+ * plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
+ * tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java
+
+2013-12-13 Jiri Vanek <jvanek at redhat.com>
+
+ unittests warning cleanup: fixed typechecks, rawtypes, redundant casts...
+ * tests/junit-runner/CommandLine.java
+ * tests/junit-runner/JunitLikeXmlOutputListener.java
+ * tests/junit-runner/LessVerboseTextListener.java
+ * tests/netx/unit/net/sourceforge/jnlp/PluginBridgeTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/splashscreen/ErrorSplashUtilsTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/DescriptionInfoItemTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/util/UrlUtilsTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/util/XDesktopEntryTest.java
+ * tests/netx/unit/net/sourceforge/jnlp/util/replacements/BASE64EncoderTest.java
+ * tests/netx/unit/sun/applet/PluginAppletViewerTest.java
+ * tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
+ * tests/test-extensions/net/sourceforge/jnlp/ServerAccess.java
+ * tests/test-extensions/net/sourceforge/jnlp/ThreadedProcess.java
+ * tests/test-extensions/net/sourceforge/jnlp/awt/AWTHelper.java
+ * tests/test-extensions/net/sourceforge/jnlp/awt/awtactions/KeyboardActions.java
+ * tests/test-extensions/net/sourceforge/jnlp/closinglisteners/RulesFolowingClosingListener.java
+ * netx/net/sourceforge/jnlp/util/ScreenFinder.java: centering of screen
+ fixed to work also in headless mode by returrning some defaults
+
2013-12-09 Jiri Vanek <jvanek at redhat.com>
* Messages.properties: added "It will be granted unrestricted access to your computer."
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/JREDesc.java
--- a/netx/net/sourceforge/jnlp/JREDesc.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/JREDesc.java Fri Dec 13 13:28:55 2013 +0100
@@ -30,22 +30,22 @@
public class JREDesc {
/** the platform version or the product version if location is not null */
- private Version version;
+ final private Version version;
/** the location of a JRE product or null */
- private URL location;
+ final private URL location;
/** inital heap size */
- private String initialHeapSize;
+ final private String initialHeapSize;
/** maximum head size */
- private String maximumHeapSize;
+ final private String maximumHeapSize;
/** args to pass to the vm */
- private String vmArgs;
+ final private String vmArgs;
/** list of ResourceDesc objects */
- private List resources;
+ final private List<ResourcesDesc> resources;
/**
* Create a JRE descriptor.
@@ -59,7 +59,7 @@
*/
public JREDesc(Version version, URL location,
String vmArgs, String initialHeapSize,
- String maximumHeapSize, List resources) throws ParseException {
+ String maximumHeapSize, List<ResourcesDesc> resources) throws ParseException {
this.version = version;
this.location = location;
this.vmArgs = vmArgs;
@@ -112,7 +112,7 @@
/**
* Returns the resources defined for this JRE.
*/
- public List getResourcesDesc() {
+ public List<ResourcesDesc> getResourcesDesc() {
return resources;
}
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/Launcher.java Fri Dec 13 13:28:55 2013 +0100
@@ -46,7 +46,6 @@
import javax.swing.SwingUtilities;
import javax.swing.text.html.parser.ParserDelegator;
-import net.sourceforge.jnlp.runtime.AppletEnvironment;
import net.sourceforge.jnlp.splashscreen.SplashUtils;
import sun.awt.AppContext;
@@ -94,8 +93,9 @@
public Launcher() {
this(null, null);
- if (handler == null)
+ if (handler == null) {
handler = JNLPRuntime.getDefaultLaunchHandler();
+ }
}
/**
@@ -107,8 +107,9 @@
public Launcher(boolean exitOnFailure) {
this(null, null);
- if (handler == null)
+ if (handler == null) {
handler = JNLPRuntime.getDefaultLaunchHandler();
+ }
this.exitOnFailure = exitOnFailure;
}
@@ -143,8 +144,9 @@
* Sets the update policy used by launched applications.
*/
public void setUpdatePolicy(UpdatePolicy policy) {
- if (policy == null)
+ if (policy == null) {
throw new IllegalArgumentException(R("LNullUpdatePolicy"));
+ }
this.updatePolicy = policy;
}
@@ -239,12 +241,15 @@
}
}
- if (file instanceof PluginBridge && cont != null)
+ if (file instanceof PluginBridge && cont != null) {
tg = new TgThread(file, cont, true);
- else if (cont == null)
+ }
+ else if (cont == null) {
tg = new TgThread(file);
- else
+ }
+ else {
tg = new TgThread(file, cont);
+ }
tg.start();
@@ -255,11 +260,13 @@
throw launchWarning(new LaunchException(file, ex, R("LSMinor"), R("LCSystem"), R("LThreadInterrupted"), R("LThreadInterruptedInfo")));
}
- if (tg.getException() != null)
- throw tg.getException(); // passed to handler when first created
+ if (tg.getException() != null) {
+ throw tg.getException();
+ } // passed to handler when first created
- if (handler != null)
+ if (handler != null) {
handler.launchCompleted(tg.getApplication());
+ }
return tg.getApplication();
}
@@ -380,12 +387,15 @@
public void launchExternal(List<String> vmArgs, JNLPFile file, List<String> javawsArgs) throws LaunchException {
List<String> updatedArgs = new LinkedList<String>(javawsArgs);
- if (file.getFileLocation() != null)
+ if (file.getFileLocation() != null) {
updatedArgs.add(file.getFileLocation().toString());
- else if (file.getSourceLocation() != null)
+ }
+ else if (file.getSourceLocation() != null) {
updatedArgs.add(file.getFileLocation().toString());
- else
+ }
+ else {
launchError(new LaunchException(file, null, R("LSFatal"), R("LCExternalLaunch"), R("LNullLocation"), R("LNullLocationInfo")));
+ }
launchExternal(vmArgs, updatedArgs);
@@ -447,9 +457,7 @@
private JNLPFile fromUrl(URL location) throws LaunchException {
try {
- JNLPFile file = null;
-
- file = new JNLPFile(location, parserSettings.isStrict());
+ JNLPFile file = new JNLPFile(location, parserSettings.isStrict());
boolean isLocal = false;
boolean haveHref = false;
@@ -480,8 +488,9 @@
* from a thread in the application's thread group.
*/
protected ApplicationInstance launchApplication(JNLPFile file) throws LaunchException {
- if (!file.isApplication())
+ if (!file.isApplication()) {
throw launchError(new LaunchException(file, null, R("LSFatal"), R("LCClient"), R("LNotApplication"), R("LNotApplicationInfo")));
+ }
try {
@@ -527,10 +536,11 @@
}
}
- if (mainName == null)
+ if (mainName == null) {
throw launchError(new LaunchException(file, null,
R("LSFatal"), R("LCClient"), R("LCantDetermineMainClass"),
R("LCantDetermineMainClassInfo")));
+ }
Class<?> mainClass = app.getClassLoader().loadClass(mainName);
@@ -539,6 +549,7 @@
SwingUtilities.invokeAndWait(new Runnable() {
// dummy method to force Event Dispatch Thread creation
+ @Override
public void run() {
}
});
@@ -711,17 +722,18 @@
// appletInstance is needed by ServiceManager when looking up
// services. This could potentially be done in applet constructor
// so initialize appletInstance before creating applet.
- if (cont == null)
- appletInstance = new AppletInstance(file, group, loader, null);
- else
- appletInstance = new AppletInstance(file, group, loader, null, cont);
+ if (cont == null) {
+ appletInstance = new AppletInstance(file, group, loader, null);
+ } else {
+ appletInstance = new AppletInstance(file, group, loader, null, cont);
+ }
loader.setApplication(appletInstance);
// Initialize applet now that ServiceManager has access to its
// appletInstance.
String appletName = file.getApplet().getMainClass();
- Class appletClass = loader.loadClass(appletName);
+ Class<?> appletClass = loader.loadClass(appletName);
Applet applet = (Applet) appletClass.newInstance();
// Finish setting up appletInstance.
appletInstance.setApplet(applet);
@@ -753,7 +765,7 @@
}
String appletName = file.getApplet().getMainClass();
- Class appletClass = loader.loadClass(appletName);
+ Class<?> appletClass = loader.loadClass(appletName);
Applet applet = (Applet) appletClass.newInstance();
return applet;
@@ -788,7 +800,7 @@
* ThreadGroup has to be created at an earlier point in the applet code.
*/
protected ThreadGroup createThreadGroup(JNLPFile file) {
- ThreadGroup tg = null;
+ final ThreadGroup tg;
if (file instanceof PluginBridge) {
tg = Thread.currentThread().getThreadGroup();
@@ -811,8 +823,9 @@
if (applet != null) {
SplashUtils.showErrorCaught(ex, applet);
}
- if (handler != null)
+ if (handler != null) {
handler.launchError(ex);
+ }
return ex;
}
@@ -825,10 +838,11 @@
* @return an exception to throw if the launch should be aborted, or null otherwise
*/
private LaunchException launchWarning(LaunchException ex) {
- if (handler != null)
+ if (handler != null) {
if (!handler.launchWarning(ex))
// no need to destroy the app b/c it hasn't started
- return ex; // chose to abort
+ return ex;
+ } // chose to abort
return null; // chose to continue, or no handler
}
@@ -899,12 +913,14 @@
this.isPlugin = isPlugin;
}
+ @Override
public void run() {
try {
// Do not create new AppContext if we're using NetX and icedteaplugin.
// The plugin needs an AppContext too, but it has to be created earlier.
- if (context && !isPlugin)
+ if (context && !isPlugin) {
SunToolkit.createNewAppContext();
+ }
doPerApplicationAppContextHacks();
@@ -913,23 +929,28 @@
JNLPRuntime.setDefaultDownloadIndicator(null);
application = getApplet(file, ((PluginBridge)file).codeBaseLookup(), cont);
} else {
- if (file.isApplication())
+ if (file.isApplication()) {
application = launchApplication(file);
- else if (file.isApplet())
- application = launchApplet(file, true, cont); // enable applet code base
- else if (file.isInstaller())
+ }
+ else if (file.isApplet()) {
+ application = launchApplet(file, true, cont);
+ } // enable applet code base
+ else if (file.isInstaller()) {
application = launchInstaller(file);
- else
+ }
+ else {
throw launchError(new LaunchException(file, null,
R("LSFatal"), R("LCClient"), R("LNotLaunchable"),
R("LNotLaunchableInfo")));
+ }
}
} catch (LaunchException ex) {
ex.printStackTrace();
exception = ex;
// Exit if we can't launch the application.
- if (exitOnFailure)
+ if (exitOnFailure) {
System.exit(1);
+ }
}
}
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/Node.java
--- a/netx/net/sourceforge/jnlp/Node.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/Node.java Fri Dec 13 13:28:55 2013 +0100
@@ -63,13 +63,16 @@
}
Node getFirstChild() {
- if (children == null)
+ if (children == null) {
getChildNodes();
+ }
- if (children.length == 0)
+ if (children.length == 0) {
return null;
- else
+ }
+ else {
return children[0];
+ }
}
Node getNextSibling() {
@@ -87,13 +90,15 @@
if (children == null) {
List<Node> list = new ArrayList<Node>();
- for (Enumeration e = xml.enumerateChildren(); e.hasMoreElements();)
- list.add(new Node((XMLElement) e.nextElement()));
+ for (Enumeration<XMLElement> e = xml.enumerateChildren(); e.hasMoreElements();) {
+ list.add(new Node(e.nextElement()));
+ }
children = list.toArray(new Node[list.size()]);
- for (int i = 0; i < children.length - 1; i++)
+ for (int i = 0; i < children.length - 1; i++) {
children[i].next = children[i + 1];
+ }
}
return children;
@@ -107,8 +112,9 @@
if (attributeNames == null) {
attributeNames= new ArrayList<String>();
- for (Enumeration e = xml.enumerateAttributeNames(); e.hasMoreElements();)
- attributeNames.add(new String((String) e.nextElement()));
+ for (Enumeration<String> e = xml.enumerateAttributeNames(); e.hasMoreElements();) {
+ attributeNames.add(new String(e.nextElement()));
+ }
}
return attributeNames;
@@ -119,12 +125,15 @@
}
String getNodeName() {
- if (xml.getName() == null)
+ if (xml.getName() == null) {
return "";
- else
+ }
+ else {
return xml.getName();
+ }
}
+ @Override
public String toString() {
return getNodeName();
}
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/Parser.java
--- a/netx/net/sourceforge/jnlp/Parser.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/Parser.java Fri Dec 13 13:28:55 2013 +0100
@@ -346,7 +346,7 @@
}
String initialHeap = getAttribute(node, "initial-heap-size", null);
String maxHeap = getAttribute(node, "max-heap-size", null);
- List resources = getResources(node, true);
+ List<ResourcesDesc> resources = getResources(node, true);
// require version attribute
getRequiredAttribute(node, "version", null);
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java
--- a/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java Fri Dec 13 13:28:55 2013 +0100
@@ -221,8 +221,11 @@
*
* @return List of Strings sorted by ascending order.
*/
+ @SuppressWarnings({"unchecked", "rawtypes"})
+ //although Properties are pretending to be <object,Object> they are always <String,String>
+ //bug in jdk?
public synchronized List<Entry<String, String>> getLRUSortedEntries() {
- ArrayList<Entry<String, String>> entries = new ArrayList(cacheOrder.entrySet());
+ List<Entry<String, String>> entries = new ArrayList(cacheOrder.entrySet());
// sort by keys in descending order.
Collections.sort(entries, new Comparator<Entry<String, String>>() {
@Override
diff -r f055f0ed886d -r 94ff58f33514 netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java Mon Dec 09 13:25:24 2013 +0100
+++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java Fri Dec 13 13:28:55 2013 +0100
@@ -488,7 +488,7 @@
+ systemPropertiesFile);
}
Setting<String> mandatory = systemConfiguration.get("deployment.system.config.mandatory");
- systemPropertiesMandatory = Boolean.valueOf(mandatory == null ? null : (String) mandatory.getValue());
+ systemPropertiesMandatory = Boolean.valueOf(mandatory == null ? null : mandatory.getValue());
return true;
} else {
if (JNLPRuntime.isDebug()) {
More information about the distro-pkg-dev
mailing list