minor: Allow objects to be added directly to a row on a ConsoleDisplayTable rather than having to ToString() them first

This commit is contained in:
Justin Clark-Casey (justincc)
2013-01-02 22:11:13 +00:00
parent 70695a6ed9
commit 6b55f51837
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Animations
int seq = sequenceNumbers[i];
UUID objectId = objectIds[i];
cdt.Rows.Add(new ConsoleDisplayTableRow(animId, animName, seq, objectId));
cdt.AddRow(animId, animName, seq, objectId);
}
cdt.AddToStringBuilder(sb);