Let's call a PlaceConfig a PlaceConfig.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5282 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-08-01 14:38:01 +00:00
parent 0b6d823e8a
commit 29ada80ce5
@@ -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<Object> rl)
public boolean mayMoveTo (final int placeId, ResultListener<PlaceConfig> rl)
{
final boolean[] vetoed = new boolean[1];
_observers.apply(new ObserverOp<LocationObserver>() {
@@ -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<Object> _moveListener;
protected ResultListener<PlaceConfig> _moveListener;
/** The operation used to inform observers that the location changed. */
protected ObserverOp<LocationObserver> _didChangeOp = new ObserverOp<LocationObserver>() {