Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/ServerLog.java [184:217]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } else {
      min = 0;
      max = 0;
      average = 0.0f;
    }

    s = Integer.toString(min);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("min per batch,", s);
    else
      Report.output("    min per batch: ", s);
    Util.abandonEphemeralString(t, l);

    s = Integer.toString(max);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("max per batch,", s);
    else
      Report.output("    max per batch: ", s);
    Util.abandonEphemeralString(t, l);

    s = Float.toString(average);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("average per batch,", s);
    else
      Report.output("average per batch: ", s);
    Util.abandonEphemeralString(t, l);
                  
    Report.output();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/ServerLog.java [366:399]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } else {
      min = 0;
      max = 0;
      average = 0.0f;
    }

    s = Integer.toString(min);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("min per batch,", s);
    else
      Report.output("    min per batch: ", s);
    Util.abandonEphemeralString(t, l);
                  
    s = Integer.toString(max);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("max per batch,", s);
    else
      Report.output("    max per batch: ", s);
    Util.abandonEphemeralString(t, l);
                  
    s = Float.toString(average);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("average per batch,", s);
    else
      Report.output("average per batch: ", s);
    Util.abandonEphemeralString(t, l);
                  
    Report.output();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



