From c78accd506a28b57277422d2639d544d30949678 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 15 Aug 2003 23:58:02 +0000 Subject: [PATCH] Minor edit. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2775 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/resource/ResourceBundle.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/resource/ResourceBundle.java b/src/java/com/threerings/resource/ResourceBundle.java index 13af2177f..54448c130 100644 --- a/src/java/com/threerings/resource/ResourceBundle.java +++ b/src/java/com/threerings/resource/ResourceBundle.java @@ -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; @@ -75,8 +75,8 @@ public class ResourceBundle */ public boolean isUnpacked () { - return (_source.exists() && (_unpacked != null) && - (_unpacked.lastModified() == _source.lastModified())); + return (_source.exists() && _unpacked != null && + _unpacked.lastModified() == _source.lastModified()); } /**