Removed extra semi

This commit is contained in:
darbyjack 2020-03-25 22:54:26 -05:00
parent 06513c89bc
commit e95f1b4850
No known key found for this signature in database
GPG Key ID: 597C501782382437
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ public class ExpansionCloudManager {
plugin.getLogger().info("Fetching available expansion information...");
plugin.getServer().getScheduler().runTaskAsynchronously(plugin, () -> {
final Map<String, CloudExpansion> data = new HashMap<>();;
final Map<String, CloudExpansion> data = new HashMap<>();
try (BufferedReader reader = new BufferedReader(new InputStreamReader(new URL(API_URL).openStream()))) {
data.putAll(GSON.fromJson(reader, new TypeToken<Map<String, CloudExpansion>>() {}.getType()));