1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-13 18:14:38 +02:00

More general cleanup.

This commit is contained in:
KHobbits
2012-01-28 14:17:27 +00:00
parent e960078e1a
commit 8080abacd6
3 changed files with 2 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ private static SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
}
public int getType() {
if (info == null || info.equals("")) {
if (info == null || info.isEmpty()) {
return COUNTRY_EDITION;
}
else {

View File

@@ -5,7 +5,7 @@ static public String regionNameByCode(String country_code,String region_code) {
String name = null;
int region_code2 = -1;
if (region_code == null) { return null; }
if (region_code.equals("")) { return null; }
if (region_code.isEmpty()) { return null; }
if ( ((region_code.charAt(0) >= 48 ) && ( region_code.charAt(0) < ( 48 + 10 )))
&& ((region_code.charAt(1) >= 48 ) && ( region_code.charAt(1) < ( 48 + 10 )))

View File

@@ -11,7 +11,6 @@ import java.util.Locale;
import java.util.Map;
import org.bukkit.Location;
import org.bukkit.World;
import org.bukkit.event.Event.Priority;
import org.bukkit.event.EventPriority;