rubocop autocorrect: Fix empty method definition

This commit is contained in:
Kazuhiro Serizawa 2017-02-25 22:55:40 +09:00
parent 35bef89588
commit a67e5297c2
1 changed files with 1 additions and 2 deletions

View File

@ -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