aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/PluginBridge.java
diff options
context:
space:
mode:
authorOmair Majid <[email protected]>2013-09-09 11:32:36 -0400
committerOmair Majid <[email protected]>2013-09-09 11:32:36 -0400
commiteae8bd5edfb2300861eb1e646595b27b68293829 (patch)
tree0ad66a0bdefaa8472b8b61b98151bbd316021efd /netx/net/sourceforge/jnlp/PluginBridge.java
parent6d8f2f2829a06dee43cfe08eea2be162836b65a3 (diff)
PR1533: Inherit jnlp.packEnabled and jnlp.versionEnabled like other properties
Treat jnlp.packEnabled and jnlp.versionEnabled just like other properties that can be set in one resource element and inherited/filtered in others. 2013-09-09 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/JNLPFile.java (getDownloadOptionsForJar): Rename to ... (getDownloadOptions): New method. Look up jnlp.packEnabled and jnlp.versionEnabled in any resources element. * netx/net/sourceforge/jnlp/PluginBridge.java (getDownloadOptionsForJar): Rename to ... (getDownloadOptions): New method. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (initializeResources): Invoke file.getDownloadResources. (getDownloadOptionsForJar): Remove. * tests/netx/unit/net/sourceforge/jnlp/JNLPFileTest.java (testDownloadOptionsAppliedEverywhere): New method. (testDownloadOptionsFilteredOut): New method.
Diffstat (limited to 'netx/net/sourceforge/jnlp/PluginBridge.java')
-rw-r--r--netx/net/sourceforge/jnlp/PluginBridge.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/PluginBridge.java b/netx/net/sourceforge/jnlp/PluginBridge.java
index 4f4c8f1..51c22a1 100644
--- a/netx/net/sourceforge/jnlp/PluginBridge.java
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java
@@ -228,7 +228,7 @@ public class PluginBridge extends JNLPFile {
* {@inheritDoc }
*/
@Override
- public DownloadOptions getDownloadOptionsForJar(JARDesc jar) {
+ public DownloadOptions getDownloadOptions() {
return new DownloadOptions(usePack, useVersion);
}