r20364: SWAT updates, part 1
[abartlet/samba.git/.git] / swat / apps / swat / source / class / swat / module / AbstractModule.js
index e8c115d411c0f466060de004bc31b5d8400337d2..2effa54b0549ec6f88bbd22ef2c0069a7d83c8c8 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright:
+ *   (C) 2006 by Derrell Lipman
+ *       All rights reserved
+ *
+ * License:
+ *   LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/
+ */
+
 /**
  * Abstract Module class.  All modules should extend this class.
  */
@@ -105,7 +114,8 @@ qx.Proto.buildInitialFsm = function(module)
 
   // Save the finite state machine for this module
   module.fsm = fsm;
-  fsm.addObject("swat.module.fsm", fsm);
+
+  // Start the finite state machine
   fsm.start();
 };