diff options
author | Laurent Charignon <l.charignon@gmail.com> | 2016-01-31 17:58:23 -0800 |
---|---|---|
committer | Laurent Charignon <l.charignon@gmail.com> | 2016-01-31 17:58:23 -0800 |
commit | a559816d67f5f6e3b9a26566798000d8e848feee (patch) | |
tree | b53a071a64944ecd62d8338ada3ca2ff74e0cc73 | |
parent | 21398657072bd91f05c2130f4d40085fc654e0f9 (diff) | |
download | ranger-a559816d67f5f6e3b9a26566798000d8e848feee.tar.gz |
history: cleanup two unused methods
-rw-r--r-- | ranger/container/history.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ranger/container/history.py b/ranger/container/history.py index c1d929ed..387fd1bf 100644 --- a/ranger/container/history.py +++ b/ranger/container/history.py @@ -113,9 +113,6 @@ class History(object): def __iter__(self): return self._history.__iter__() - def next(self): - return self._history.next() - def forward(self): if self._history: self._index += 1 @@ -130,6 +127,3 @@ class History(object): self._index = len(self._history) - 1 else: self._index = 0 - - def _left(self): # used for unit test - return self._history[0:self._index+1] |