Minor edit.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2775 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-08-15 23:58:02 +00:00
parent c0ea432776
commit c78accd506
@@ -1,5 +1,5 @@
// //
// $Id: ResourceBundle.java,v 1.21 2003/08/11 20:34:21 mdb Exp $ // $Id: ResourceBundle.java,v 1.22 2003/08/15 23:58:02 mdb Exp $
package com.threerings.resource; package com.threerings.resource;
@@ -75,8 +75,8 @@ public class ResourceBundle
*/ */
public boolean isUnpacked () public boolean isUnpacked ()
{ {
return (_source.exists() && (_unpacked != null) && return (_source.exists() && _unpacked != null &&
(_unpacked.lastModified() == _source.lastModified())); _unpacked.lastModified() == _source.lastModified());
} }
/** /**