Removed unnecessary double spaces from log messages.

This commit is contained in:
MobiusDevelopment
2023-01-09 00:33:08 +00:00
parent 9a3d55e768
commit 4a2ddb08c5
88 changed files with 90 additions and 90 deletions

View File

@@ -115,7 +115,7 @@ public class SkillTreeTable
{
if (classId != null)
{
LOGGER.warning("Error while creating skill tree (Class ID " + classId.getId() + "): " + e);
LOGGER.warning("Error while creating skill tree (Class ID " + classId.getId() + "): " + e);
}
}
LOGGER.info("SkillTreeTable: Loaded " + count + " skills.");

View File

@@ -54,7 +54,7 @@ public class AdminReload implements IAdminCommandHandler
if (!st.hasMoreTokens())
{
BuilderUtil.sendSysMessage(activeChar, "Usage: //reload <type>");
BuilderUtil.sendSysMessage(activeChar, "Usage: //reload <type>");
return false;
}
@@ -126,7 +126,7 @@ public class AdminReload implements IAdminCommandHandler
}
catch (Exception e)
{
BuilderUtil.sendSysMessage(activeChar, "Usage: //reload <type>");
BuilderUtil.sendSysMessage(activeChar, "Usage: //reload <type>");
}
}
return true;

View File

@@ -15452,7 +15452,7 @@ public class Player extends Playable
}
catch (Exception e)
{
LOGGER.warning("SetSex: Could not store data:" + e);
LOGGER.warning("SetSex: Could not store data:" + e);
}
}

View File

@@ -382,7 +382,7 @@ public class TaskManager
}
catch (SQLException e)
{
LOGGER.warning("cannot add the task: " + e.getMessage());
LOGGER.warning("cannot add the task: " + e.getMessage());
}
return output;
}