Skip to content

Commit 963fea0

Browse files
committed
Merge pull request #934 from mnhock/Remove-unused-third-argument
* pr/934: Fix Format-string method arguments
2 parents f32aded + e98977c commit 963fea0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-core/src/test/java/org/springframework/core/env/PropertySourceTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ public void toString_verbosityVariesOnLogLevel() {
110110
ps.toString(),
111111
equalTo(String.format("%s [name='%s']",
112112
ps.getClass().getSimpleName(),
113-
name,
114-
map.size())));
113+
name)));
115114
} finally {
116115
logger.setLevel(original);
117116
}

0 commit comments

Comments
 (0)