From 51f2a049584d01e27ba2c46f9e5e78c350ed089d Mon Sep 17 00:00:00 2001 From: Ali Moghnieh Date: Fri, 4 Aug 2017 16:26:57 +0100 Subject: [PATCH] Fix import errors. --- .../src/com/earth2me/essentials/commands/Commandbreak.java | 4 ++-- .../com/earth2me/essentials/commands/Commandlightning.java | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandbreak.java b/Essentials/src/com/earth2me/essentials/commands/Commandbreak.java index 46bb6bb3f..118a614a1 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandbreak.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandbreak.java @@ -6,7 +6,7 @@ import org.bukkit.Server; import org.bukkit.block.Block; import org.bukkit.event.block.BlockBreakEvent; -import java.util.HashSet; +import java.util.Set; import static com.earth2me.essentials.I18n.tl; @@ -39,4 +39,4 @@ public class Commandbreak extends EssentialsCommand { block.setType(Material.AIR); } } -} \ No newline at end of file +} diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandlightning.java b/Essentials/src/com/earth2me/essentials/commands/Commandlightning.java index ad1a05a3b..1b479d0fc 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandlightning.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandlightning.java @@ -3,12 +3,14 @@ package com.earth2me.essentials.commands; import com.earth2me.essentials.CommandSource; import com.earth2me.essentials.User; import com.google.common.collect.Lists; + +import org.bukkit.Material; import org.bukkit.Server; import org.bukkit.entity.LightningStrike; import java.util.Collections; import java.util.List; -import java.util.HashSet; +import java.util.Set; import static com.earth2me.essentials.I18n.tl;