Jumped the gun. I suppose we want to allow hot swapping of paths and once

the old path is replaced, it will go away quietly and cleanly.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2177 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-01-17 03:50:10 +00:00
parent 08cfd0a9f7
commit dfe837a9d8
@@ -1,5 +1,5 @@
//
// $Id: Sprite.java,v 1.58 2003/01/17 03:44:20 mdb Exp $
// $Id: Sprite.java,v 1.59 2003/01/17 03:50:10 mdb Exp $
package com.threerings.media.sprite;
@@ -215,15 +215,6 @@ public abstract class Sprite extends AbstractMedia
*/
public void move (Path path)
{
// if we already have a path, complain like the dickens
if (_path != null) {
Log.warning("Refusing to set path; we've already got one " +
"[sprite=" + this + ", cpath=" + _path +
", npath=" + path + "].");
Thread.dumpStack();
return;
}
// save off this path
_path = path;