()
| 315 | } |
| 316 | |
| 317 | public void stopBeforeModules() throws Exception { |
| 318 | lock(); |
| 319 | try { |
| 320 | if (Game_Rank != null) |
| 321 | Game_Rank.StopBefore(); |
| 322 | if (Game_Map != null) |
| 323 | Game_Map.StopBefore(); |
| 324 | if (null != Zeze.getHotManager()) { |
| 325 | var definedOrder = new java.util.HashSet<String>(); |
| 326 | Zeze.getHotManager().stopBeforeModulesExcept(definedOrder); |
| 327 | } |
| 328 | } finally { |
| 329 | unlock(); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | public void startService() throws Exception { |
| 334 | lock(); |
nothing calls this directly
no test coverage detected