()
| 134 | } |
| 135 | |
| 136 | private void startLocalCheck() { |
| 137 | if (verifyLocalTimer != null) |
| 138 | verifyLocalTimer.cancel(false); |
| 139 | verifyLocalTimer = Task.scheduleUnsafe(localCheckPeriod, this::verifyLocal); |
| 140 | } |
| 141 | |
| 142 | private void onHotModuleStop(HotModule hot) { |
| 143 | freshStopModuleLocal |= hotModulesHaveLocal.remove(hot) != null; |
no test coverage detected