Remove explicit self

This commit is contained in:
Jack Nagel 2014-06-29 22:26:14 -05:00
parent 07171f5527
commit ac687d3b5f

View File

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