Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/ConcurrencyControl.java [199:232]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } else {
      average = 0f;
      min = 0;
      max = 0;
    }
    
    s = Float.toString(average);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("average waits,", s);
    else
      Report.output("             average waits: ", s);
    Util.abandonEphemeralString(t, l);

    s = Integer.toString(min);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("ranging from,", s);
    else
      Report.output("              ranging from: ", s);
    Util.abandonEphemeralString(t, l);
    
    s = Integer.toString(max);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("to,", s);
    else
      Report.output("                        to: ", s);
    Util.abandonEphemeralString(t, l);

    Report.output("");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/ConcurrencyControl.java [255:288]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } else {
      average = 0f;
      min = 0;
      max = 0;
    }

    s = Float.toString(average);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("average waits,", s);
    else
      Report.output("             average waits: ", s);
    Util.abandonEphemeralString(t, l);
    
    s = Integer.toString(min);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("ranging from,", s);
    else
      Report.output("              ranging from: ", s);
    Util.abandonEphemeralString(t, l);
      
    s = Integer.toString(max);
    l = s.length();
    Util.ephemeralString(t, l);
    if (reportCSV)
      Report.output("to,", s);
    else
      Report.output("                        to: ", s);
    Util.abandonEphemeralString(t, l);

    Report.output("");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



