Fix unnecessary type paramaters

Can be inferred by the compiler.

Change-Id: If880ddfb7d7af2be70729d0c9f73c7c821b9c652
This commit is contained in:
Shawn Pearce 2017-04-22 14:32:41 -07:00
parent 5e250e45be
commit 76e86f4e48
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ private static Map<String, String> cloneHeaders(final Response rsp) {
@SuppressWarnings("unchecked")
private static Map<String, String[]> clone(Map parameterMap) {
return new TreeMap<String, String[]>(parameterMap);
return new TreeMap<>(parameterMap);
}
/** @return {@code "GET"} or {@code "POST"} */