Polishing

This commit is contained in:
Juergen Hoeller
2024-01-24 22:30:33 +01:00
parent c5a75219ce
commit c6121da151
3 changed files with 17 additions and 20 deletions

View File

@@ -375,9 +375,8 @@ class SimpleAliasRegistryTests {
@Override
public String resolveStringValue(String str) {
return (this.placeholders.getOrDefault(str, str));
return this.placeholders.getOrDefault(str, str);
}
}
}