summaryrefslogtreecommitdiffstats
path: root/jrt
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-11-06 12:49:07 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2018-11-06 12:49:07 +0100
commit61c32b5e96095becd318a49dab32812346e209ad (patch)
treed92e3e8a6f40f430e8554afc001aaab0351c93d0 /jrt
parente24c4e107a1dd3b33e3aa44ccc5b364dca11c1ac (diff)
No * import
Diffstat (limited to 'jrt')
-rw-r--r--jrt/src/com/yahoo/jrt/tool/RpcInvoker.java17
1 files changed, 15 insertions, 2 deletions
diff --git a/jrt/src/com/yahoo/jrt/tool/RpcInvoker.java b/jrt/src/com/yahoo/jrt/tool/RpcInvoker.java
index 830c56c3bbd..7803767e4d0 100644
--- a/jrt/src/com/yahoo/jrt/tool/RpcInvoker.java
+++ b/jrt/src/com/yahoo/jrt/tool/RpcInvoker.java
@@ -1,7 +1,20 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jrt.tool;
-import com.yahoo.jrt.*;
+import com.yahoo.jrt.DoubleValue;
+import com.yahoo.jrt.FloatValue;
+import com.yahoo.jrt.Int16Value;
+import com.yahoo.jrt.Int32Value;
+import com.yahoo.jrt.Int64Value;
+import com.yahoo.jrt.Int8Value;
+import com.yahoo.jrt.Request;
+import com.yahoo.jrt.Spec;
+import com.yahoo.jrt.StringValue;
+import com.yahoo.jrt.Supervisor;
+import com.yahoo.jrt.Target;
+import com.yahoo.jrt.Transport;
+import com.yahoo.jrt.Value;
+import com.yahoo.jrt.Values;
import java.util.Arrays;
import java.util.List;
@@ -14,7 +27,7 @@ import java.util.ArrayList;
*/
public class RpcInvoker {
- private Value getArgument(Request request,String parameter) {
+ private Value getArgument(Request request, String parameter) {
if (parameter.length()<=1 || parameter.charAt(1)!=':')
return new StringValue(parameter);