Remove unnecessary types

This commit is contained in:
md678685 2019-03-07 15:09:24 +00:00
parent 3b4b5bcd8e
commit 017ea1a4fe

View File

@ -11,7 +11,7 @@ import java.util.Objects;
public class Jails implements StorageObject {
@MapValueType(Location.class)
private Map<String, Location> jails = new HashMap<String, Location>();
private Map<String, Location> jails = new HashMap<>();
public Map<String, Location> getJails() {
return jails;