commit | b556644b17b30ff9ee6ae269ce0745dd738ef965 | [log] [tgz] |
---|---|---|
author | Richard S. Hall <rickhall@apache.org> | Wed Apr 15 01:56:31 2009 +0000 |
committer | Richard S. Hall <rickhall@apache.org> | Wed Apr 15 01:56:31 2009 +0000 |
tree | d95b0b33a13857406b1b9b05b52abd7db68c1b1d | |
parent | de0905ce14197b329f27a2e36232befdbffcf0a3 [diff] |
Previous attempt to turn off JAR verification only did it when the security manager was enabled, now it is also turned off when there is no security manager (which was the original intent). git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@765034 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java b/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java index 3bd7819..343b6e1 100644 --- a/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java +++ b/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java
@@ -536,7 +536,7 @@ } else { - return new JarFileX(file); + return new JarFileX(file, verify); } } // TODO: REFACTOR - SecureAction fix needed.