From d25ffbe78d4f26535f06638f51417e2d832335a5 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Tue, 7 Jul 2009 22:32:28 +0200 Subject: [PATCH] Removed two unneeded properties --- plugin/PySnipEmu.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugin/PySnipEmu.py b/plugin/PySnipEmu.py index e72908d..647e9d6 100644 --- a/plugin/PySnipEmu.py +++ b/plugin/PySnipEmu.py @@ -108,14 +108,6 @@ class VimState(object): return self._text_changed buf_changed = property(buf_changed) - def nr_lines(self): - return self._lines - nr_lines = property(nr_lines) - - def cols_in_line(self): - return self._cols - cols_in_line = property(cols_in_line) - def pos(self): return self._abs_pos pos = property(pos) @@ -143,7 +135,6 @@ class SnippetManager(object): self._expect_move_wo_change = False - def _load_snippets_from(self, ft, fn): cs = None cv = ""