Polish "Remove unnecessary final modifier"
See gh-31916
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
* Copyright 2002-2023 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
* Copyright 2002-2023 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -56,7 +56,7 @@ public class ContextCacheTestUtils {
|
||||
* @param expectedMissCount the expected miss count
|
||||
*/
|
||||
public static void assertContextCacheStatistics(String usageScenario, int expectedSize, int expectedHitCount,
|
||||
int expectedMissCount) {
|
||||
int expectedMissCount) {
|
||||
assertContextCacheStatistics(DefaultCacheAwareContextLoaderDelegate.defaultContextCache, usageScenario,
|
||||
expectedSize, expectedHitCount, expectedMissCount);
|
||||
}
|
||||
@@ -71,7 +71,7 @@ public class ContextCacheTestUtils {
|
||||
* @param expectedMissCount the expected miss count
|
||||
*/
|
||||
public static void assertContextCacheStatistics(ContextCache contextCache, String usageScenario,
|
||||
int expectedSize, int expectedHitCount, int expectedMissCount) {
|
||||
int expectedSize, int expectedHitCount, int expectedMissCount) {
|
||||
|
||||
String context = (StringUtils.hasText(usageScenario) ? " (" + usageScenario + ")" : "");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user