Commit fae20655ade1e777bafba829a523dfa60f5314c3

Anton Maminov 2013-10-10T01:00:26

remove trailing whitespaces

diff --git a/lib/mpd_client.rb b/lib/mpd_client.rb
index 28f5779..854524e 100644
--- a/lib/mpd_client.rb
+++ b/lib/mpd_client.rb
@@ -181,7 +181,7 @@ class MPDClient
   def command_list_end
     raise "Not in command list" if @command_list.nil?
     write_command('command_list_end')
-    
+
     return fetch_command_list
   end
 
@@ -319,19 +319,19 @@ class MPDClient
   end
 
   def fetch_changes; fetch_objects(['cpos']); end
-  
+
   def fetch_songs; fetch_objects(['file']); end
 
   def fetch_messages; fetch_objects('channel'); end
 
   def fetch_outputs; fetch_objects(['outputid']); end
-  
+
   def fetch_plugins; fetch_objects(['plugin']); end
 
   def fetch_database; fetch_objects(['file', 'directory', 'playlist']); end
-  
+
   def fetch_playlists; fetch_objects(['playlist']); end
-  
+
   def fetch_playlist
     result = []
     read_pairs(':').each do |key, value|
@@ -363,7 +363,7 @@ class MPDClient
     ensure
       @command_list = nil
     end
-  
+
     return result
   end