Turns out people had extended Sprite and added their own Comparable
implementation, so let's not stick a fork in that. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@353 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
|
||||
package com.threerings.media.animation;
|
||||
|
||||
import com.samskivert.util.ComparableArrayList;
|
||||
import com.samskivert.util.SortableArrayList;
|
||||
|
||||
import com.threerings.media.AbstractMedia;
|
||||
import com.threerings.media.AbstractMediaManager;
|
||||
@@ -71,10 +71,10 @@ public class AnimationManager extends AbstractMediaManager
|
||||
}
|
||||
|
||||
@Override // from AbstractMediaManager
|
||||
protected ComparableArrayList<? extends AbstractMedia> createMediaList ()
|
||||
protected SortableArrayList<? extends AbstractMedia> createMediaList ()
|
||||
{
|
||||
return (_anims = new ComparableArrayList<Animation>());
|
||||
return (_anims = new SortableArrayList<Animation>());
|
||||
}
|
||||
|
||||
protected ComparableArrayList<Animation> _anims;
|
||||
protected SortableArrayList<Animation> _anims;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user