removed unused allContexts
This commit is contained in:
parent
391c6b19fd
commit
77d330a71d
@ -14,7 +14,6 @@ class WindowManager {
|
|||||||
**/
|
**/
|
||||||
public static var instance:WindowManager;
|
public static var instance:WindowManager;
|
||||||
private var currentMainContext:WindowContext;
|
private var currentMainContext:WindowContext;
|
||||||
private final allContexts:Array<WindowContext> = new Array();
|
|
||||||
private final outputMap:Map<String, WindowContext> = new Map();
|
private final outputMap:Map<String, WindowContext> = new Map();
|
||||||
|
|
||||||
@:allow(kernel.Init)
|
@:allow(kernel.Init)
|
||||||
@ -75,8 +74,6 @@ class WindowManager {
|
|||||||
public function createNewContext():WindowContext {
|
public function createNewContext():WindowContext {
|
||||||
var newContext = new WindowContext(new VirtualTermWriter());
|
var newContext = new WindowContext(new VirtualTermWriter());
|
||||||
|
|
||||||
allContexts.push(newContext);
|
|
||||||
|
|
||||||
return newContext;
|
return newContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user