Sho SHIMIZU
Committed by Gerrit Code Review

Replace String constructor call with literal

Change-Id: Ib47edc7d88fc0e904cf6b2c141eb93b179058cd7
......@@ -50,7 +50,7 @@ public class SetTestGetCommand extends AbstractShellCommand {
Set<String> set;
Set<String> toCheck = new HashSet<String>();
String output = new String();
String output = "";
Serializer serializer = Serializer.using(
new KryoNamespace.Builder().register(KryoNamespaces.BASIC).build());
......