Committed by
Gerrit Code Review
Replace String constructor call with literal
Change-Id: Ib47edc7d88fc0e904cf6b2c141eb93b179058cd7
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -50,7 +50,7 @@ public class SetTestGetCommand extends AbstractShellCommand { | ... | @@ -50,7 +50,7 @@ public class SetTestGetCommand extends AbstractShellCommand { |
| 50 | 50 | ||
| 51 | Set<String> set; | 51 | Set<String> set; |
| 52 | Set<String> toCheck = new HashSet<String>(); | 52 | Set<String> toCheck = new HashSet<String>(); |
| 53 | - String output = new String(); | 53 | + String output = ""; |
| 54 | 54 | ||
| 55 | Serializer serializer = Serializer.using( | 55 | Serializer serializer = Serializer.using( |
| 56 | new KryoNamespace.Builder().register(KryoNamespaces.BASIC).build()); | 56 | new KryoNamespace.Builder().register(KryoNamespaces.BASIC).build()); | ... | ... |
-
Please register or login to post a comment