diff --git a/src/java/com/threerings/openal/ClipBuffer.java b/src/java/com/threerings/openal/ClipBuffer.java index 6677f14e..a6e1a41c 100644 --- a/src/java/com/threerings/openal/ClipBuffer.java +++ b/src/java/com/threerings/openal/ClipBuffer.java @@ -22,9 +22,7 @@ package com.threerings.openal; import java.io.IOException; -import java.nio.IntBuffer; -import org.lwjgl.BufferUtils; import org.lwjgl.openal.AL10; import com.samskivert.util.ObserverList; diff --git a/src/java/com/threerings/openal/Sound.java b/src/java/com/threerings/openal/Sound.java index eea540cb..d360e331 100644 --- a/src/java/com/threerings/openal/Sound.java +++ b/src/java/com/threerings/openal/Sound.java @@ -21,11 +21,6 @@ package com.threerings.openal; -import java.nio.FloatBuffer; - -import org.lwjgl.BufferUtils; -import org.lwjgl.openal.AL10; - /** * Represents an instance of a sound clip which can be positioned in 3D space, gain and pitch * adjusted and played or looped. diff --git a/src/java/com/threerings/openal/SoundGroup.java b/src/java/com/threerings/openal/SoundGroup.java index b70978db..ab931f1a 100644 --- a/src/java/com/threerings/openal/SoundGroup.java +++ b/src/java/com/threerings/openal/SoundGroup.java @@ -21,10 +21,8 @@ package com.threerings.openal; -import java.nio.IntBuffer; import java.util.ArrayList; -import org.lwjgl.BufferUtils; import org.lwjgl.openal.AL10; import static com.threerings.openal.Log.log; diff --git a/src/java/com/threerings/openal/Stream.java b/src/java/com/threerings/openal/Stream.java index d68984e6..ec083ce5 100644 --- a/src/java/com/threerings/openal/Stream.java +++ b/src/java/com/threerings/openal/Stream.java @@ -27,7 +27,6 @@ import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.IntBuffer; -import org.lwjgl.BufferUtils; import org.lwjgl.openal.AL10; import static com.threerings.openal.Log.log;