aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-06-29 22:26:14 -0500
committerJack Nagel2014-06-29 22:26:15 -0500
commitac687d3b5f3654d8eaea8d4b8fc86905ef0a9f36 (patch)
tree91d71e16cab18efcdd1c88569c2d750c00fe754a /Library
parent07171f55275f5aee010a6b529300f2b448863642 (diff)
downloadbrew-ac687d3b5f3654d8eaea8d4b8fc86905ef0a9f36.tar.bz2
Remove explicit self
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/tab.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index 868944cbc..36ec55227 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -40,9 +40,9 @@ class Tab < OpenStruct
path = keg.join(FILENAME)
if path.exist?
- self.from_file(path)
+ from_file(path)
else
- self.dummy_tab
+ dummy_tab
end
end