summaryrefslogtreecommitdiff
path: root/webapps/swat/source/class/swat/module/netmgr/NetManager.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapps/swat/source/class/swat/module/netmgr/NetManager.js')
-rw-r--r--webapps/swat/source/class/swat/module/netmgr/NetManager.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/webapps/swat/source/class/swat/module/netmgr/NetManager.js b/webapps/swat/source/class/swat/module/netmgr/NetManager.js
deleted file mode 100644
index cdb9ba4515..0000000000
--- a/webapps/swat/source/class/swat/module/netmgr/NetManager.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) Rafal Szczesniak 2007
- */
-
-/**
- * Swat Net Manager class
- */
-qx.OO.defineClass("swat.module.netmgr.NetManager",
- swat.main.AbstractModule,
-function()
-{
- swat.main.AbstractModule.call(this);
-});
-
-
-qx.Proto.initialAppear = function(module)
-{
- // Replace the existing (temporary) finite state machine with the real one
- swat.module.netmgr.Fsm.getInstance().buildFsm(module);
-
- // Create the real gui
- swat.module.netmgr.Gui.getInstance().buildGui(module);
-};
-
-
-/**
- * Singleton Instance Getter
- */
-qx.Class.getInstance = qx.lang.Function.returnInstance;