You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2009/04/15 03:56:32 UTC

svn commit: r765034 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java

Author: rickhall
Date: Wed Apr 15 01:56:31 2009
New Revision: 765034

URL: http://svn.apache.org/viewvc?rev=765034&view=rev
Log:
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).

Modified:
    felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java

Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java?rev=765034&r1=765033&r2=765034&view=diff
==============================================================================
--- felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java (original)
+++ felix/trunk/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java Wed Apr 15 01:56:31 2009
@@ -536,7 +536,7 @@
         }
         else
         {
-            return new JarFileX(file);
+            return new JarFileX(file, verify);
         }
     }
 // TODO: REFACTOR - SecureAction fix needed.