mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
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:
@@ -84,7 +84,7 @@ namespace OpenSim.Framework.Console
|
||||
Columns.Add(new ConsoleDisplayTableColumn(name, width));
|
||||
}
|
||||
|
||||
public void AddRow(params string[] cells)
|
||||
public void AddRow(params object[] cells)
|
||||
{
|
||||
Rows.Add(new ConsoleDisplayTableRow(cells));
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user