= Updated utils and logging subsystem formatting

This commit is contained in:
Matthew Cech
2019-06-19 22:14:13 -07:00
parent 5e531a19b7
commit 06317a4528
58 changed files with 205 additions and 202 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ public class RPGInput
return;
raw = raw.trim();
int whitespacePos = StringUtils.FindFirstWhitespace(raw);
int whitespacePos = StringUtils.findFirstWhitespace(raw);
if(whitespacePos == -1)
{
+1 -1
View File
@@ -7,6 +7,6 @@ public class RPGLog
{
public static void log(String toWrite)
{
GlobalLog.Log(LogFilter.Command, "[RPG] " + toWrite);
GlobalLog.log(LogFilter.Command, "[RPG] " + toWrite);
}
}