Remove debugging line in GameScreen.

This commit is contained in:
Jan Philipp Timme 2014-11-29 17:13:40 +01:00
parent 1b5eb872dd
commit ea9dfbf774

View File

@ -102,11 +102,10 @@ public class GameScreen extends Screen {
} }
/** /**
* Cleanup method for the background music. * Cleanup method to stop the background music.
*/ */
@Override @Override
public void cleanup() { public void cleanup() {
System.out.println("Interrupting Music");
this.backgroundMusic.interrupt(); this.backgroundMusic.interrupt();
super.cleanup(); super.cleanup();
} }