Dropped SQL teleport table.

Adapted from: L2jUnity free files.
This commit is contained in:
MobiusDev
2017-11-17 03:46:03 +00:00
parent 7adad0d806
commit 8a82470da0
1100 changed files with 14721 additions and 12839 deletions

View File

@@ -511,6 +511,18 @@ public final class CommonUtil
}
}
public static int parseInt(String value, int defaultValue)
{
try
{
return Integer.parseInt(value);
}
catch (Exception e)
{
return defaultValue;
}
}
/**
* @param str - the string whose first letter to capitalize
* @return a string with the first letter of the {@code str} capitalized