From fe8f95b15b26294a2f5c8a545f9eaa052241a250 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 13 Apr 2006 05:33:21 +0000 Subject: [PATCH] Let's do it the Greenwell way and save a compare. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4016 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/cast/bundle/BundledComponentRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java index 382b81854..44acb8977 100644 --- a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java +++ b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java @@ -347,7 +347,7 @@ public class BundledComponentRepository // if this is a shadow image, no need to freak out as they are // optional - if (type != null && type.equals(StandardActions.SHADOW_TYPE)) { + if (StandardActions.SHADOW_TYPE.equals(type)) { return null; }