Merge pull request #7111 from izeye:string-format

* pr/7111:
  Remove unused parameters in String.format()
This commit is contained in:
Stephane Nicoll 2016-10-06 09:34:45 +02:00
commit e9f43f30df
1 changed files with 2 additions and 3 deletions

View File

@ -184,15 +184,14 @@ public class NoSuchBeanDefinitionFailureAnalyzerTests {
private void assertBeanMethodDisabled(FailureAnalysis analysis, String description,
Class<?> target, String methodName) {
String expected = String.format("Bean method '%s' in '%s' not loaded because",
methodName, ClassUtils.getShortName(target), description);
methodName, ClassUtils.getShortName(target));
assertThat(analysis.getDescription()).contains(expected);
assertThat(analysis.getDescription()).contains(description);
}
private void assertClassDisabled(FailureAnalysis analysis, String description,
String methodName) {
String expected = String.format("Bean method '%s' not loaded because", methodName,
description);
String expected = String.format("Bean method '%s' not loaded because", methodName);
assertThat(analysis.getDescription()).contains(expected);
assertThat(analysis.getDescription()).contains(description);
}