fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / audio / dummy_sound_source.cpp
index 0ca6392..1a9c274 100644 (file)
@@ -32,12 +32,12 @@ public:
   {
     is_playing = true;
   }
-  
+
   virtual void stop()
   {
     is_playing = false;
   }
-  
+
   virtual bool playing()
   {
     return is_playing;
@@ -79,4 +79,3 @@ SoundSource* create_dummy_sound_source()
 {
   return new DummySoundSource();
 }
-