remove deprecation warning
authorVolker Zöpfel <volker@zoepfel.de>
Thu, 28 Nov 2013 11:29:55 +0000 (12:29 +0100)
committerVolker Zöpfel <volker@zoepfel.de>
Thu, 28 Nov 2013 11:29:55 +0000 (12:29 +0100)
lib/google/api_client/auth/file_storage.rb

index f6c41289b97602e4bf5c9518c4dcdaddf4de8f52..83786f20fd8ad8e01d8c751ed30ebd3534078e73 100644 (file)
@@ -34,7 +34,6 @@ module Google
                     :path
 
       def initialize(path)
-        Google::APIClient.logger("DEPRECATED: Please use Storage Class instead.")
         @path = path
         store = Google::APIClient::FileStore.new(@path)
         @storage = Google::APIClient::Storage.new(store)
@@ -42,7 +41,6 @@ module Google
       end
 
       def load_credentials
-        Google::APIClient.logger("DEPRECATED: Please use Storage Class instead.")
         storage.authorize
       end