Skip to content

Commit f2fe8a8

Browse files
committed
Polish contribution
See gh-27862
1 parent 6ecb488 commit f2fe8a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-core/src/main/java/org/springframework/core/BridgeMethodResolver.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -93,9 +93,9 @@ public static Method findBridgedMethod(Method bridgeMethod) {
9393

9494
/**
9595
* Returns {@code true} if the supplied '{@code candidateMethod}' can be
96-
* consider a validate candidate for the {@link Method} that is {@link Method#isBridge() bridged}
96+
* considered a validate candidate for the {@link Method} that is {@link Method#isBridge() bridged}
9797
* by the supplied {@link Method bridge Method}. This method performs inexpensive
98-
* checks and can be used quickly filter for a set of possible matches.
98+
* checks and can be used to quickly filter for a set of possible matches.
9999
*/
100100
private static boolean isBridgedCandidateFor(Method candidateMethod, Method bridgeMethod) {
101101
return (!candidateMethod.isBridge() &&

0 commit comments

Comments
 (0)