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 39d2cafb5c
commit afcf5a7591
2 changed files with 2 additions and 2 deletions

View File

@@ -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));
}