Skip to content

Commit ca8261c

Browse files
committed
Polishing
1 parent 8de10e9 commit ca8261c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

spring-test/src/main/java/org/springframework/mock/web/MockHttpServletMapping.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.mock.web;
1718

1819
import javax.servlet.http.HttpServletMapping;
@@ -72,9 +73,9 @@ public MappingMatch getMappingMatch() {
7273

7374
@Override
7475
public String toString() {
75-
return "MockHttpServletMapping [matchValue=\"" + matchValue + "\", " +
76-
"pattern=\"" + pattern + "\", servletName=\"" + servletName + "\", " +
77-
"mappingMatch=" + mappingMatch + "]";
76+
return "MockHttpServletMapping [matchValue=\"" + this.matchValue + "\", " +
77+
"pattern=\"" + this.pattern + "\", servletName=\"" + this.servletName + "\", " +
78+
"mappingMatch=" + this.mappingMatch + "]";
7879
}
7980

8081
}

spring-web/src/main/java/org/springframework/http/server/reactive/HttpHandlerDecoratorFactory.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020

2121
/**
2222
* Contract for applying a decorator to an {@code HttpHandler}.
23+
*
2324
* @author Christophe Maillard
2425
* @since 5.3.4
2526
*/
2627
public interface HttpHandlerDecoratorFactory extends Function<HttpHandler, HttpHandler> {
28+
2729
}

spring-web/src/main/java/org/springframework/web/cors/reactive/PreFlightRequestHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.web.cors.reactive;
1718

1819
import reactor.core.publisher.Mono;

spring-web/src/testFixtures/java/org/springframework/web/testfixture/servlet/MockHttpServletMapping.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.web.testfixture.servlet;
1718

1819
import javax.servlet.http.HttpServletMapping;
@@ -72,9 +73,9 @@ public MappingMatch getMappingMatch() {
7273

7374
@Override
7475
public String toString() {
75-
return "MockHttpServletMapping [matchValue=\"" + matchValue + "\", " +
76-
"pattern=\"" + pattern + "\", servletName=\"" + servletName + "\", " +
77-
"mappingMatch=" + mappingMatch + "]";
76+
return "MockHttpServletMapping [matchValue=\"" + this.matchValue + "\", " +
77+
"pattern=\"" + this.pattern + "\", servletName=\"" + this.servletName + "\", " +
78+
"mappingMatch=" + this.mappingMatch + "]";
7879
}
7980

8081
}

0 commit comments

Comments
 (0)