Prune spurious semicolons & redundant implementation declarations
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@849 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -139,4 +139,4 @@ public class CompositedMaskedImage extends CompositedMultiFrameImage
|
|||||||
protected int getY (int index) {
|
protected int getY (int index) {
|
||||||
return ((VolatileMirage)_images[index]).getY();
|
return ((VolatileMirage)_images[index]).getY();
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -320,4 +320,4 @@ public class CompositedMultiFrameImage
|
|||||||
protected int _index;
|
protected int _index;
|
||||||
protected Point _origin = new Point();
|
protected Point _origin = new Point();
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -108,4 +108,4 @@ public class CompositedShadowImage extends CompositedMultiFrameImage
|
|||||||
|
|
||||||
/** The alpha value at which we render our shadow. */
|
/** The alpha value at which we render our shadow. */
|
||||||
protected AlphaComposite _shadowAlpha;
|
protected AlphaComposite _shadowAlpha;
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -727,7 +727,7 @@ public abstract class FrameManager
|
|||||||
|
|
||||||
/** Used to compute metrics. */
|
/** Used to compute metrics. */
|
||||||
protected long _lastTick;
|
protected long _lastTick;
|
||||||
};
|
}
|
||||||
|
|
||||||
/** The window into which we do our rendering. */
|
/** The window into which we do our rendering. */
|
||||||
protected Window _window;
|
protected Window _window;
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ import java.util.Iterator;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.ObjectInputStream;
|
import java.io.ObjectInputStream;
|
||||||
import java.io.ObjectOutputStream;
|
import java.io.ObjectOutputStream;
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
|
|
||||||
import com.samskivert.util.HashIntMap;
|
import com.samskivert.util.HashIntMap;
|
||||||
@@ -43,7 +41,7 @@ import com.threerings.media.tile.TileSet;
|
|||||||
* on the local filesystem.
|
* on the local filesystem.
|
||||||
*/
|
*/
|
||||||
public class TileSetBundle extends HashIntMap<TileSet>
|
public class TileSetBundle extends HashIntMap<TileSet>
|
||||||
implements Serializable, ImageDataProvider
|
implements ImageDataProvider
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Initializes this resource bundle with a reference to the jarfile from which it was loaded
|
* Initializes this resource bundle with a reference to the jarfile from which it was loaded
|
||||||
|
|||||||
@@ -365,7 +365,7 @@ public class SceneObject
|
|||||||
_spotTri.addPoint(-3, -3);
|
_spotTri.addPoint(-3, -3);
|
||||||
_spotTri.addPoint(3, -3);
|
_spotTri.addPoint(3, -3);
|
||||||
_spotTri.addPoint(0, 3);
|
_spotTri.addPoint(0, 3);
|
||||||
};
|
}
|
||||||
|
|
||||||
/** The alpha used to fill our bounds for warning purposes. */
|
/** The alpha used to fill our bounds for warning purposes. */
|
||||||
protected static final Composite ALPHA_WARN =
|
protected static final Composite ALPHA_WARN =
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ import java.util.List;
|
|||||||
|
|
||||||
import java.awt.Point;
|
import java.awt.Point;
|
||||||
|
|
||||||
import com.threerings.util.DirectionCodes;
|
|
||||||
|
|
||||||
import com.threerings.media.sprite.Sprite;
|
import com.threerings.media.sprite.Sprite;
|
||||||
import com.threerings.media.util.LineSegmentPath;
|
import com.threerings.media.util.LineSegmentPath;
|
||||||
import com.threerings.media.util.MathUtil;
|
import com.threerings.media.util.MathUtil;
|
||||||
@@ -42,7 +40,6 @@ import com.threerings.miso.util.MisoUtil;
|
|||||||
* coordinates are updated as the path is traversed.
|
* coordinates are updated as the path is traversed.
|
||||||
*/
|
*/
|
||||||
public class TilePath extends LineSegmentPath
|
public class TilePath extends LineSegmentPath
|
||||||
implements DirectionCodes
|
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Constructs a tile path.
|
* Constructs a tile path.
|
||||||
|
|||||||
@@ -408,7 +408,7 @@ public class OpenALSoundPlayer extends SoundPlayer
|
|||||||
protected MediaTimer _timer = FrameManager.createTimer();
|
protected MediaTimer _timer = FrameManager.createTimer();
|
||||||
|
|
||||||
protected long _lastTick;
|
protected long _lastTick;
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a sound in its run method and calls subclasses with soundLoaded to let them know it's
|
* Loads a sound in its run method and calls subclasses with soundLoaded to let them know it's
|
||||||
|
|||||||
@@ -335,5 +335,5 @@ public abstract class Stream
|
|||||||
protected int _state = AL10.AL_INITIAL;
|
protected int _state = AL10.AL_INITIAL;
|
||||||
|
|
||||||
/** Fading modes. */
|
/** Fading modes. */
|
||||||
protected enum FadeMode { NONE, IN, OUT, OUT_DISPOSE };
|
protected enum FadeMode { NONE, IN, OUT, OUT_DISPOSE }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -142,5 +142,5 @@ public class BrowserUtil
|
|||||||
protected Process _process;
|
protected Process _process;
|
||||||
protected URL _url;
|
protected URL _url;
|
||||||
protected ResultListener<Void> _listener;
|
protected ResultListener<Void> _listener;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user