Commit d89cf943 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #7510 from oscr:fix-redundant-tostring

* pr/7510:
  Remove redundant toString() invocation
parents 357d072a 88b83a90
......@@ -219,7 +219,7 @@ public class JarFileArchive implements Archive {
@Override
public String getName() {
return this.jarEntry.getName().toString();
return this.jarEntry.getName();
}
}
......
......@@ -123,7 +123,7 @@ public class JarFileArchiveTests {
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment