()
| 114 | } |
| 115 | |
| 116 | private void updateTickHandler() { |
| 117 | if (!isRunning() || isPaused()) { |
| 118 | tickHandler = this::__doTickNotRunning; |
| 119 | } else if (childrenArray.length == 0) { |
| 120 | tickHandler = this::__doTickNoDevices; |
| 121 | } else { |
| 122 | tickHandler = this::__doTickIsRunning; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | private void __doTickNotRunning() { |
| 127 | // Do nothing |
no test coverage detected