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. */
|
||||
protected ObserverList<CardSelectionObserver> _handSelectionObservers =
|
||||
new ObserverList<CardSelectionObserver>(
|
||||
ObserverList.FAST_UNSAFE_NOTIFY);
|
||||
ObserverList.newFastUnsafe();
|
||||
|
||||
/** The location of the center of the hand's upper edge. */
|
||||
protected Point _handLocation = new Point();
|
||||
|
||||
@@ -369,6 +369,5 @@ public class TableDirector extends BasicDirector
|
||||
protected Table _ourTable;
|
||||
|
||||
/** An array of entities that want to hear about when we stand up or sit down. */
|
||||
protected ObserverList<SeatednessObserver> _seatedObservers =
|
||||
new ObserverList<SeatednessObserver>(ObserverList.FAST_UNSAFE_NOTIFY);
|
||||
protected ObserverList<SeatednessObserver> _seatedObservers = ObserverList.newFastUnsafe();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user