summaryrefslogtreecommitdiff
path: root/poezio/windows/base_wins.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows/base_wins.py')
-rw-r--r--poezio/windows/base_wins.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/poezio/windows/base_wins.py b/poezio/windows/base_wins.py
index a4fad3f4..1a578350 100644
--- a/poezio/windows/base_wins.py
+++ b/poezio/windows/base_wins.py
@@ -34,7 +34,6 @@ class DummyWin(object):
return False
class Win(object):
- _win_core = None
_tab_win = None
def __init__(self):
self._win = None
@@ -149,10 +148,3 @@ class Win(object):
self.addnstr(' '*size, size, to_curses_attr(color))
else:
self.addnstr(' '*size, size)
-
- @property
- def core(self):
- if not Win._win_core:
- Win._win_core = singleton.Singleton(core.Core)
- return Win._win_core
-