()
| 259 | } |
| 260 | |
| 261 | public void stopBeforeModules() throws Exception { |
| 262 | lock(); |
| 263 | try { |
| 264 | if (ClientGame_Equip != null) |
| 265 | ClientGame_Equip.StopBefore(); |
| 266 | if (ClientGame_Fight != null) |
| 267 | ClientGame_Fight.StopBefore(); |
| 268 | if (ClientGame_Login != null) |
| 269 | ClientGame_Login.StopBefore(); |
| 270 | if (ClientZezex_Linkd != null) |
| 271 | ClientZezex_Linkd.StopBefore(); |
| 272 | if (Zeze_Builtin_LinkdBase != null) |
| 273 | Zeze_Builtin_LinkdBase.StopBefore(); |
| 274 | if (Zeze_Builtin_Game_Bag != null) |
| 275 | Zeze_Builtin_Game_Bag.StopBefore(); |
| 276 | if (Zeze_Builtin_Game_Online != null) |
| 277 | Zeze_Builtin_Game_Online.StopBefore(); |
| 278 | } finally { |
| 279 | unlock(); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | public void startService() throws Exception { |
| 284 | lock(); |
nothing calls this directly
no test coverage detected