Description
n.b. This is a newbie ticket designed to be an introduction to contributing for the assignee.
In NioEchoServer the enum has its constructor declared as private, which is redundant. We can remove this.
public class NioEchoServer extends Thread { public enum MetricType { TOTAL, RATE, AVG, MAX; private final String metricNameSuffix; private MetricType() { metricNameSuffix = "-" + name().toLowerCase(Locale.ROOT); }}}