Use the factory methods to create our observer lists.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@1075 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -1088,8 +1088,7 @@ public abstract class CardPanel extends VirtualMediaPanel
|
|||||||
|
|
||||||
/** Observers of hand card selection/deselection. */
|
/** Observers of hand card selection/deselection. */
|
||||||
protected ObserverList<CardSelectionObserver> _handSelectionObservers =
|
protected ObserverList<CardSelectionObserver> _handSelectionObservers =
|
||||||
new ObserverList<CardSelectionObserver>(
|
ObserverList.newFastUnsafe();
|
||||||
ObserverList.FAST_UNSAFE_NOTIFY);
|
|
||||||
|
|
||||||
/** The location of the center of the hand's upper edge. */
|
/** The location of the center of the hand's upper edge. */
|
||||||
protected Point _handLocation = new Point();
|
protected Point _handLocation = new Point();
|
||||||
|
|||||||
@@ -369,6 +369,5 @@ public class TableDirector extends BasicDirector
|
|||||||
protected Table _ourTable;
|
protected Table _ourTable;
|
||||||
|
|
||||||
/** An array of entities that want to hear about when we stand up or sit down. */
|
/** An array of entities that want to hear about when we stand up or sit down. */
|
||||||
protected ObserverList<SeatednessObserver> _seatedObservers =
|
protected ObserverList<SeatednessObserver> _seatedObservers = ObserverList.newFastUnsafe();
|
||||||
new ObserverList<SeatednessObserver>(ObserverList.FAST_UNSAFE_NOTIFY);
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user