public boolean loadProfiles() throws IOException { this.profiles.clear(); this.selectedProfile = null; if (this.profileFile.isFile()) { /*ligne 71*/RawProfileList rawProfileList = (RawProfileList)this.gson.fromJson(FileUtils.readFileToString(this.profileFile), RawProfileList.class); this.profiles.putAll(rawProfileList.profiles); this.selectedProfile = rawProfileList.selectedProfile; this.launcher.setClientToken(rawProfileList.clientToken); fireRefreshEvent(); return true; } fireRefreshEvent(); return false; }