Advertisement
rherrick

XDATUser lines 2042-2050

Jun 7th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.     public void refreshGroup(String id) {
  2.         if (groups.containsKey(id)) {
  3.             UserGroup g = UserGroupManager.GetGroup(id);
  4.             if (g != null) {
  5.                 groups.remove(groups.get(id));
  6.                 groups.put(id, g);
  7.             }
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement