This commit is contained in:
zzz
2015-03-16 15:44:45 +00:00
parent 819b35c760
commit 7e4832d5f2
4 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ class TrustedPluginKeys {
* @return map of B64 DSA keys to signer names
*/
public static Map<String, String> getKeys() {
Map<String, String> rv = new HashMap(KEYS.length / 2);
Map<String, String> rv = new HashMap<String, String>(KEYS.length / 2);
for (int i = 0; i < KEYS.length; i += 2) {
rv.put(KEYS[i+1], KEYS[i]);
}