From a67e5297c29d0bbd8008bb69dca3e600f11be536 Mon Sep 17 00:00:00 2001 From: Kazuhiro Serizawa Date: Sat, 25 Feb 2017 22:55:40 +0900 Subject: [PATCH] rubocop autocorrect: Fix empty method definition --- spec/googleauth/stores/file_token_store_spec.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/googleauth/stores/file_token_store_spec.rb b/spec/googleauth/stores/file_token_store_spec.rb index 7936682..4ddca25 100644 --- a/spec/googleauth/stores/file_token_store_spec.rb +++ b/spec/googleauth/stores/file_token_store_spec.rb @@ -42,8 +42,7 @@ module FakeFS class File # FakeFS doesn't implement. And since we don't need to actually lock, # just stub out... - def flock(*) - end + def flock(*); end end end