Fucking JarFile throws a SecurityException if there's a signing error
which is *not* an IOException. Thanks guys. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2827 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: ResourceBundle.java,v 1.23 2003/08/20 03:52:36 mdb Exp $
|
// $Id: ResourceBundle.java,v 1.24 2003/10/22 18:50:27 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.resource;
|
package com.threerings.resource;
|
||||||
|
|
||||||
@@ -148,8 +148,8 @@ public class ResourceBundle
|
|||||||
new FileOutputStream(efile));
|
new FileOutputStream(efile));
|
||||||
jin = _jarSource.getInputStream(entry);
|
jin = _jarSource.getInputStream(entry);
|
||||||
StreamUtils.pipe(jin, fout);
|
StreamUtils.pipe(jin, fout);
|
||||||
} catch (IOException ioe) {
|
} catch (Exception e) {
|
||||||
Log.warning("Failure unpacking " + efile + ": " + ioe);
|
Log.warning("Failure unpacking " + efile + ": " + e);
|
||||||
failure = true;
|
failure = true;
|
||||||
} finally {
|
} finally {
|
||||||
StreamUtil.close(jin);
|
StreamUtil.close(jin);
|
||||||
|
|||||||
Reference in New Issue
Block a user