Remove unnecessary final modifiers
See gh-38739
This commit is contained in:
committed by
Phillip Webb
parent
d3a51e56b7
commit
84f7c2dba9
@@ -144,7 +144,7 @@ public class DevToolsHomePropertiesPostProcessor implements EnvironmentPostProce
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
private final File getHomeDirectory(Supplier<String>... pathSuppliers) {
|
||||
private File getHomeDirectory(Supplier<String>... pathSuppliers) {
|
||||
for (Supplier<String> pathSupplier : pathSuppliers) {
|
||||
String path = pathSupplier.get();
|
||||
if (StringUtils.hasText(path)) {
|
||||
|
||||
Reference in New Issue
Block a user