StringBuffer formattedStringBuffer = new StringBuffer(64);
if (commandArray != null) {
int length = commandArray.length;
for (int index = 0; index < length; index++) {
FormatCommandInterface currentConverter = commandArray[index];
if (currentConverter != null) {
formattedStringBuffer.append(currentConverter.execute(
clientID, name, time, level, message, t));
}
}
}