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

Cleanup redundant type casts

This commit is contained in:
Lars Grefer
2019-07-04 19:04:19 +02:00
committed by Rob Winch
parent 43737a56bd
commit c5b5cc507c
31 changed files with 38 additions and 42 deletions
@@ -62,7 +62,7 @@ public class PythonInterpreterPreInvocationAdvice implements
throw new IllegalStateException("Python script did not set the permit flag");
}
return (Boolean) Py.tojava(allowed, Boolean.class);
return Py.tojava(allowed, Boolean.class);
}
private Map<String, Object> createArgumentMap(MethodInvocation mi) {