Oh the bad choice of property names. That's not no. Also added a comment

explaining why we don't care if we get a SecurityException.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@136 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2007-02-01 19:25:09 +00:00
parent 5fe2a337c1
commit 420140a3bc
@@ -167,8 +167,9 @@ public class ResourceManager
// check a system property to determine if we should unpack our bundles, but don't freak
// out if we fail to read it
try {
_unpack = Boolean.getBoolean("no_unpack_resources");
_unpack = !Boolean.getBoolean("no_unpack_resources");
} catch (SecurityException se) {
// no problem, we're in a sandbox so we definitely won't be unpacking
}
// get our resource directory from resource_dir if possible