mirror of
https://github.com/TotalFreedomMC/TotalFreedomMod.git
synced 2025-08-07 04:53:05 +00:00
More improvements. (#15)
* This is rediculous * Forgot some final and this * Fixed and improved skull caging * Windows wanted this yeah
This commit is contained in:
parent
d9d1d4fa9b
commit
059bf14d90
16 changed files with 381 additions and 278 deletions
|
@ -130,7 +130,7 @@ public class FUtil
|
|||
Math.round(location.getZ()));
|
||||
}
|
||||
|
||||
public static boolean deleteFolder(final File file)
|
||||
public static boolean deleteFolder(File file)
|
||||
{
|
||||
if (file.exists() && file.isDirectory())
|
||||
{
|
||||
|
@ -375,8 +375,8 @@ public class FUtil
|
|||
{
|
||||
CHAT_COLOR_ITERATOR = CHAT_COLOR_POOL.iterator();
|
||||
|
||||
final StringBuilder newString = new StringBuilder();
|
||||
final char[] chars = string.toCharArray();
|
||||
StringBuilder newString = new StringBuilder();
|
||||
char[] chars = string.toCharArray();
|
||||
|
||||
for (char c : chars)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue