@Override // Executed in EDT !!
 protected void done() {
   try {
     Clan clan = get();
     this.gui.publishClanPlayers(clan);
     this.gui.publishClanProvinces(provinces);
   } catch (InterruptedException e) {
     Utils.handleException(e, this.gui);
   } catch (ExecutionException e) {
     Utils.handleException(e, this.gui);
   }
 }