From 754566d011fd91bfd1ae48a75ea14bba94725697 Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Fri, 15 Aug 2008 23:19:44 +0000 Subject: [PATCH] Pedanticism police. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@632 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/java/com/threerings/openal/ClipBuffer.java | 6 ++---- tests/src/java/com/threerings/openal/TestSoundManager.java | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/java/com/threerings/openal/ClipBuffer.java b/src/java/com/threerings/openal/ClipBuffer.java index 4a851e12..db5aadde 100644 --- a/src/java/com/threerings/openal/ClipBuffer.java +++ b/src/java/com/threerings/openal/ClipBuffer.java @@ -39,12 +39,10 @@ public class ClipBuffer /** Used to notify parties interested in when a clip is loaded. */ public static interface Observer { - /** Called when a clip has completed loading and is ready to be - * played. */ + /** Called when a clip has completed loading and is ready to be played. */ public void clipLoaded (ClipBuffer buffer); - /** Called when a clip has failed to prepare itself for one reason - * or other. */ + /** Called when a clip has failed to prepare itself for one reason or other. */ public void clipFailed (ClipBuffer buffer); } diff --git a/tests/src/java/com/threerings/openal/TestSoundManager.java b/tests/src/java/com/threerings/openal/TestSoundManager.java index 93125b87..ad015c67 100644 --- a/tests/src/java/com/threerings/openal/TestSoundManager.java +++ b/tests/src/java/com/threerings/openal/TestSoundManager.java @@ -46,7 +46,7 @@ public class TestSoundManager e.printStackTrace(); } Interval i = new Interval(rqueue) { - public void expired () { + @Override public void expired () { smgr.updateStreams(0.1f); } }; @@ -54,7 +54,7 @@ public class TestSoundManager } else { // queue up an interval to play a sound over and over Interval i = new Interval(rqueue) { - public void expired () { + @Override public void expired () { Sound sound = group.getSound(path); sound.play(true); }