Polishing

This commit is contained in:
Juergen Hoeller
2020-09-01 10:47:37 +02:00
parent 210dd0392f
commit c9573a4fb6
2 changed files with 2 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ public class ReplaceOverride extends MethodOverride {
*/
public ReplaceOverride(String methodName, String methodReplacerBeanName) {
super(methodName);
Assert.notNull(methodName, "Method replacer bean name must not be null");
Assert.notNull(methodReplacerBeanName, "Method replacer bean name must not be null");
this.methodReplacerBeanName = methodReplacerBeanName;
}