removed unused allContexts

This commit is contained in:
Djeeberjr 2023-01-30 02:49:43 +01:00
parent 391c6b19fd
commit 77d330a71d

View File

@ -14,7 +14,6 @@ class WindowManager {
**/
public static var instance:WindowManager;
private var currentMainContext:WindowContext;
private final allContexts:Array<WindowContext> = new Array();
private final outputMap:Map<String, WindowContext> = new Map();
@:allow(kernel.Init)
@ -75,8 +74,6 @@ class WindowManager {
public function createNewContext():WindowContext {
var newContext = new WindowContext(new VirtualTermWriter());
allContexts.push(newContext);
return newContext;
}