()
| 270 | } |
| 271 | |
| 272 | public void startModules() throws Exception { |
| 273 | lock(); |
| 274 | try { |
| 275 | Game_Map.Start(this); |
| 276 | Game_Rank.Start(this); |
| 277 | if (null != Zeze.getHotManager()) { |
| 278 | var definedOrder = new java.util.HashSet<String>(); |
| 279 | Zeze.getHotManager().startModulesExcept(definedOrder); |
| 280 | } |
| 281 | } finally { |
| 282 | unlock(); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | @Override |
| 287 | public void startLastModules() throws Exception { |
no test coverage detected