Update Options.toStringNoKeys

Issue #388 resolved
Desrever Nu created an issue

No description provided.

Comments (2)

  1. Benjamin Cordes

    I think NuBotOptionsSerializer s better for this. in UI this is used, without needing the string options, i.e. no manual updates:

    GsonBuilder gson = new GsonBuilder().setPrettyPrinting();
    gson.registerTypeAdapter(NuBotOptions.class, new NuBotOptionsSerializer());
    Gson parser = gson.create();
    String js = parser.toJson(Global.options);
    
  2. Log in to comment