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:
Michael Bayne
2011-04-05 21:07:44 +00:00
parent 8ed475b322
commit e83a57e57a
2 changed files with 2 additions and 4 deletions
@@ -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();
}