diff --git a/cli/src/commands/org/jnode/command/net/NetstatCommand.java b/cli/src/commands/org/jnode/command/net/NetstatCommand.java index 52d50686d..3926733c5 100644 --- a/cli/src/commands/org/jnode/command/net/NetstatCommand.java +++ b/cli/src/commands/org/jnode/command/net/NetstatCommand.java @@ -76,7 +76,7 @@ private void showStats(PrintWriter out, Statistics stat, int padSize) padOutput(out, padSize); out.print(str_none); } else { - StringBuffer buffer = new StringBuffer(); + StringBuilder buffer = new StringBuilder(); for (Statistic statistic : statistics) { buffer.append(paddedString(padSize)).append(statistic.getName()).append(' ') .append(statistic.getValue()).append("\n");