/hg/icedtea-web: netx/net/sourceforge/jnlp/runtime/JNLPClassLoad...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Tue May 29 08:38:03 PDT 2012
changeset f4f02e8c080d in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=f4f02e8c080d
author: Jiri Vanek <jvanek at redhat.com>
date: Tue May 29 17:38:27 2012 +0200
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (getPermissions): New rethrow of exceptions and following condition make more accurate
diffstat:
ChangeLog | 7 +++-
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java | 32 ++++++++++-------
2 files changed, 24 insertions(+), 15 deletions(-)
diffs (58 lines):
diff -r 526df16b6e27 -r f4f02e8c080d ChangeLog
--- a/ChangeLog Tue May 29 15:54:14 2012 +0200
+++ b/ChangeLog Tue May 29 17:38:27 2012 +0200
@@ -1,4 +1,9 @@
-2012-05-20 Jiri Vanek <jvanek at redhat.com>
+2012-05-29 Jiri Vanek <jvanek at redhat.com>
+
+ * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (getPermissions):
+ New rethrow of exceptions and following condition make more accurate.
+
+2012-05-29 Jiri Vanek <jvanek at redhat.com>
Get rid of repeated sout/serr in reproducers testcases/unit tests and
introduce bottleneck for loging.
diff -r 526df16b6e27 -r f4f02e8c080d netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Tue May 29 15:54:14 2012 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Tue May 29 17:38:27 2012 +0200
@@ -914,22 +914,26 @@
// 1. Code must be signed
// 2. ALL or J2EE permissions must be requested (note: plugin requests ALL automatically)
if (cs == null) {
- throw new RuntimeException("Code source was null");
+ throw new NullPointerException("Code source was null");
}
- if (cs.getLocation() == null) {
- throw new RuntimeException("Code source location was null");
- }
- if (getCodeSourceSecurity(cs.getLocation()) == null) {
- throw new RuntimeException("Code source security was null");
- }
- if (getCodeSourceSecurity(cs.getLocation()).getSecurityType() == null) {
- throw new RuntimeException("Code source security type was null");
- }
- if (cs.getCodeSigners() != null
- && (getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.ALL_PERMISSIONS)
- || getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.J2EE_PERMISSIONS))) {
+ if (cs.getCodeSigners() != null) {
+ if (cs.getLocation() == null) {
+ throw new NullPointerException("Code source location was null");
+ }
+ if (getCodeSourceSecurity(cs.getLocation()) == null) {
+ throw new NullPointerException("Code source security was null");
+ }
+ if (getCodeSourceSecurity(cs.getLocation()).getSecurityType() == null) {
+ if (JNLPRuntime.isDebug()){
+ new NullPointerException("Warning! Code source security type was null").printStackTrace();
+ }
+ }
+ Object securityType = getCodeSourceSecurity(cs.getLocation()).getSecurityType();
+ if (SecurityDesc.ALL_PERMISSIONS.equals(securityType)
+ || SecurityDesc.J2EE_PERMISSIONS.equals(securityType)) {
- permissions = getCodeSourceSecurity(cs.getLocation()).getPermissions(cs);
+ permissions = getCodeSourceSecurity(cs.getLocation()).getPermissions(cs);
+ }
}
Enumeration<Permission> e = permissions.elements();
More information about the distro-pkg-dev
mailing list