(self, watcher)
| 695 | self._controllers[watcher.getName()] = watcher |
| 696 | |
| 697 | def removeWatcher(self, watcher): |
| 698 | Room.removeWatcher(self, watcher) |
| 699 | if watcher.getName() in self._controllers: |
| 700 | del self._controllers[watcher.getName()] |
| 701 | self.writeToDb() |
| 702 | |
| 703 | def setPaused(self, paused=Room.STATE_PAUSED, setBy=None): |
| 704 | if self.canControl(setBy): |
nothing calls this directly
no test coverage detected