From 29ada80ce53a62527c4d6f96c7cdfab60e09f156 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 1 Aug 2008 14:38:01 +0000 Subject: [PATCH] Let's call a PlaceConfig a PlaceConfig. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5282 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/client/LocationDirector.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/crowd/client/LocationDirector.java b/src/java/com/threerings/crowd/client/LocationDirector.java index e9bf7844b..f7c1c11f8 100644 --- a/src/java/com/threerings/crowd/client/LocationDirector.java +++ b/src/java/com/threerings/crowd/client/LocationDirector.java @@ -224,7 +224,7 @@ public class LocationDirector extends BasicDirector * @return true if everyone is happy with the move, false if it was vetoed by one of the * location observers. */ - public boolean mayMoveTo (final int placeId, ResultListener rl) + public boolean mayMoveTo (final int placeId, ResultListener rl) { final boolean[] vetoed = new boolean[1]; _observers.apply(new ObserverOp() { @@ -583,7 +583,7 @@ public class LocationDirector extends BasicDirector protected FailureHandler _failureHandler; /** A listener that wants to know if we succeeded or how we failed to move. */ - protected ResultListener _moveListener; + protected ResultListener _moveListener; /** The operation used to inform observers that the location changed. */ protected ObserverOp _didChangeOp = new ObserverOp() {