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
commitaf66b6134e71e5ef0fa3cfb507b2c741083dc954 (patch)
treea3722003c7752a7a82132129896bf194c4483317 /Library
parent00f2f74addff80341c714c458d1c325c831d8fdc (diff)
downloadhomebrew-af66b6134e71e5ef0fa3cfb507b2c741083dc954.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