aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/tools
diff options
context:
space:
mode:
authorOmair Majid <[email protected]>2011-10-31 16:31:41 -0400
committerOmair Majid <[email protected]>2011-10-31 16:31:41 -0400
commit7636caae8332a84c3ec0b87eb369c3ec1e7f0d62 (patch)
tree6b151e482bedd56e316c2877bacfd52ca0cd16ff /netx/net/sourceforge/jnlp/tools
parentda0c8484f75a0102514f9bc7b68c8f53440789eb (diff)
PR808: javaws is unable to start when missing jars are enumerated before main jar
2011-10-31 Omair Majid <[email protected]> * NEWS: Update. * netx/net/sourceforge/jnlp/tools/JarSigner.java (verifyJars): Continue with other jars if the first jar can't be used.
Diffstat (limited to 'netx/net/sourceforge/jnlp/tools')
-rw-r--r--netx/net/sourceforge/jnlp/tools/JarSigner.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/tools/JarSigner.java b/netx/net/sourceforge/jnlp/tools/JarSigner.java
index a7d529b..9ddbf6b 100644
--- a/netx/net/sourceforge/jnlp/tools/JarSigner.java
+++ b/netx/net/sourceforge/jnlp/tools/JarSigner.java
@@ -194,7 +194,7 @@ public class JarSigner implements CertVerifier {
// some sort of resource download/cache error. Nothing to add
// in that case ... but don't fail here
if (jarFile == null) {
- return;
+ continue;
}
String localFile = jarFile.getAbsolutePath();