Cleanup imports, fix package for SoundSystem class.

This commit is contained in:
JPT
2014-11-04 14:43:54 +01:00
parent 97a1195faa
commit 8db001047e
2 changed files with 3 additions and 2 deletions
@@ -13,7 +13,6 @@ import de.teamteamteam.spacescooter.entity.EnemyFour;
import de.teamteamteam.spacescooter.entity.EnemyThree;
import de.teamteamteam.spacescooter.entity.Entity;
import de.teamteamteam.spacescooter.entity.HealthBar;
import de.teamteamteam.spacescooter.entity.Explosion;
import de.teamteamteam.spacescooter.entity.ItemChance;
import de.teamteamteam.spacescooter.entity.Player;
@@ -1,3 +1,5 @@
package de.teamteamteam.spacescooter.sound;
import java.io.BufferedInputStream;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
@@ -99,6 +101,6 @@ public class SoundSystem {
FloatControl fc = (FloatControl) subC[0];
fc.setValue(volume);
BooleanControl bc = (BooleanControl) subC[1];
bc.setValue(false);
}
}