()
| 299 | } |
| 300 | |
| 301 | public void stopModules() throws Exception { |
| 302 | lock(); |
| 303 | try { |
| 304 | if (Game_Rank != null) |
| 305 | Game_Rank.Stop(this); |
| 306 | if (Game_Map != null) |
| 307 | Game_Map.Stop(this); |
| 308 | if (null != Zeze.getHotManager()) { |
| 309 | var definedOrder = new java.util.HashSet<String>(); |
| 310 | Zeze.getHotManager().stopModulesExcept(definedOrder); |
| 311 | } |
| 312 | } finally { |
| 313 | unlock(); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | public void stopBeforeModules() throws Exception { |
| 318 | lock(); |
no test coverage detected