Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void updateEffectIcons()
- {
- if(entering || isLogoutStarted())
- return;
- if(Config.USER_INFO_INTERVAL == 0)
- {
- if(_updateEffectIconsTask != null)
- {
- _updateEffectIconsTask.cancel(false);
- _updateEffectIconsTask = null;
- }
- updateEffectIconsImpl();
- return;
- }
- if(_updateEffectIconsTask != null)
- return;
- _updateEffectIconsTask = ThreadPoolManager.getInstance().schedule(new UpdateEffectIcons(), Config.USER_INFO_INTERVAL);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement