Consistent handling of null array for arguments

Issue: SPR-16075
This commit is contained in:
Juergen Hoeller
2017-10-16 15:34:18 +02:00
parent 3890d4c9eb
commit c29b6f5b55
2 changed files with 22 additions and 12 deletions

View File

@@ -51,7 +51,7 @@ public class MethodInvoker {
private String staticMethod;
@Nullable
private Object[] arguments = new Object[0];
private Object[] arguments;
/** The method we will call */
@Nullable