Package amidst.json

Examples of amidst.json.LauncherProfile


  }
 
  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;
View Full Code Here

TOP

Related Classes of amidst.json.LauncherProfile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.