From ed5f7b18bd5c92269300e63706adae77a3bbe966 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 2 Apr 2016 01:23:51 +0100 Subject: Remove the global Win._win_core, instead pass core to the two *GlobalInfoBar. --- poezio/windows/base_wins.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'poezio/windows/base_wins.py') 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 - -- cgit v1.2.3