Add a private modifiers to command arguments in clustering-test-app
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / karaf-cli / src / main / java / org / opendaylight / clustering / it / karaf / cli / car / StressTestCommand.java
index 6b9e64ad7392cfb83cf6fe47e2734480e4ccbd25..f3bf816d6f46a445b2c51a309afd5617aa286187 100644 (file)
@@ -26,9 +26,9 @@ public class StressTestCommand extends AbstractRpcAction {
     @Reference
     private RpcConsumerRegistry rpcService;
     @Argument(index = 0, name = "rate", required = true)
-    int rate;
+    private int rate;
     @Argument(index = 1, name = "count", required = true)
-    long count;
+    private long count;
 
     @Override
     protected ListenableFuture<? extends RpcResult<?>> invokeRpc() {