Infer types

This commit is contained in:
Clisprail
2014-07-24 18:45:51 +02:00
parent 9529e86945
commit 918a2d798e
@@ -35,7 +35,7 @@ public class ServerProviderInfo {
if ((line = br.readLine()) != null) {
JSONObject jsonObject = (JSONObject) parser.parse(line);
for (Object o : jsonObject.entrySet()) {
Map.Entry pairs = (Map.Entry) o;
Map.Entry<?, ?> pairs = (Map.Entry<?, ?>) o;
properties.put(String.valueOf(pairs.getKey()), String.valueOf(pairs.getValue()));
}
}else{