Pedanticism police.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@632 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Dave Hoover
2008-08-15 23:19:44 +00:00
parent 8a3c6c8614
commit 754566d011
2 changed files with 4 additions and 6 deletions
@@ -39,12 +39,10 @@ public class ClipBuffer
/** Used to notify parties interested in when a clip is loaded. */ /** Used to notify parties interested in when a clip is loaded. */
public static interface Observer public static interface Observer
{ {
/** Called when a clip has completed loading and is ready to be /** Called when a clip has completed loading and is ready to be played. */
* played. */
public void clipLoaded (ClipBuffer buffer); public void clipLoaded (ClipBuffer buffer);
/** Called when a clip has failed to prepare itself for one reason /** Called when a clip has failed to prepare itself for one reason or other. */
* or other. */
public void clipFailed (ClipBuffer buffer); public void clipFailed (ClipBuffer buffer);
} }
@@ -46,7 +46,7 @@ public class TestSoundManager
e.printStackTrace(); e.printStackTrace();
} }
Interval i = new Interval(rqueue) { Interval i = new Interval(rqueue) {
public void expired () { @Override public void expired () {
smgr.updateStreams(0.1f); smgr.updateStreams(0.1f);
} }
}; };
@@ -54,7 +54,7 @@ public class TestSoundManager
} else { } else {
// queue up an interval to play a sound over and over // queue up an interval to play a sound over and over
Interval i = new Interval(rqueue) { Interval i = new Interval(rqueue) {
public void expired () { @Override public void expired () {
Sound sound = group.getSound(path); Sound sound = group.getSound(path);
sound.play(true); sound.play(true);
} }