}
public void scanForProfiles() {
Log.i("Scanning for profiles.");
File profileJsonFile = new File(Util.minecraftDirectory + "/launcher_profiles.json");
LauncherProfile launcherProfile = null;
try {
launcherProfile = Util.readObject(profileJsonFile, LauncherProfile.class);
} catch (JsonSyntaxException e) {
Log.crash(e, "Syntax exception thrown from launch_profiles.json");
return;