Remove unnecessary final modifier
final is useless for private and static methods See gh-31916
This commit is contained in:
committed by
Stéphane Nicoll
parent
c3b5f5bf90
commit
45080e3724
@@ -474,7 +474,7 @@ public class PathPatternParserTests {
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
private final void assertPathElements(PathPattern p, Class<? extends PathElement>... sectionClasses) {
|
||||
private void assertPathElements(PathPattern p, Class<? extends PathElement>... sectionClasses) {
|
||||
PathElement head = p.getHeadSection();
|
||||
for (Class<? extends PathElement> sectionClass : sectionClasses) {
|
||||
if (head == null) {
|
||||
|
||||
Reference in New Issue
Block a user