1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Use diamond type

This commit is contained in:
Johnny Lim
2017-11-20 02:25:30 +09:00
committed by Rob Winch
parent cfe40358bd
commit 57353d18e5
221 changed files with 423 additions and 428 deletions
@@ -72,7 +72,7 @@ public class PythonInterpreterPreInvocationAdvice implements
targetObject.getClass());
String[] paramNames = parameterNameDiscoverer.getParameterNames(method);
Map<String, Object> argMap = new HashMap<String, Object>();
Map<String, Object> argMap = new HashMap<>();
for (int i = 0; i < args.length; i++) {
argMap.put(paramNames[i], args[i]);
}