File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
spring-beans/src/main/java/org/springframework/beans/factory/support
spring-web/src/main/java/org/springframework/web/server/adapter Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class ReplaceOverride extends MethodOverride {
48
48
*/
49
49
public ReplaceOverride (String methodName , String methodReplacerBeanName ) {
50
50
super (methodName );
51
- Assert .notNull (methodName , "Method replacer bean name must not be null" );
51
+ Assert .notNull (methodReplacerBeanName , "Method replacer bean name must not be null" );
52
52
this .methodReplacerBeanName = methodReplacerBeanName ;
53
53
}
54
54
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -234,7 +234,6 @@ public WebHttpHandlerBuilder filters(Consumer<List<WebFilter>> consumer) {
234
234
}
235
235
236
236
private void updateFilters () {
237
-
238
237
if (this .filters .isEmpty ()) {
239
238
return ;
240
239
}
@@ -357,7 +356,6 @@ public boolean hasForwardedHeaderTransformer() {
357
356
* Build the {@link HttpHandler}.
358
357
*/
359
358
public HttpHandler build () {
360
-
361
359
WebHandler decorated = new FilteringWebHandler (this .webHandler , this .filters );
362
360
decorated = new ExceptionHandlingWebHandler (decorated , this .exceptionHandlers );
363
361
You can’t perform that action at this time.
0 commit comments