Remove redundant toString() invocation

Closes gh-7527
This commit is contained in:
Oscar Utbult 2016-11-29 22:29:04 +01:00 committed by Stephane Nicoll
parent 80da80f930
commit fabe35fdc4
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ public class BasicErrorControllerIntegrationTests {
.accept(MediaType.TEXT_HTML).build();
ResponseEntity<String> entity = new TestRestTemplate().exchange(request,
String.class);
String resp = entity.getBody().toString();
String resp = entity.getBody();
assertThat(resp).contains("We are out of storage");
}

View File

@ -190,7 +190,7 @@ public class ExplodedArchiveTests {
private Map<String, Archive.Entry> getEntriesMap(Archive archive) {
Map<String, Archive.Entry> entries = new HashMap<String, Archive.Entry>();
for (Archive.Entry entry : archive) {
entries.put(entry.getName().toString(), entry);
entries.put(entry.getName(), entry);
}
return entries;
}