mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
refactor: rename ConsoleTable -> ConsoleDisplayTable for clarity
This commit is contained in:
@@ -38,7 +38,7 @@ namespace OpenSim.Framework.Console
|
||||
/// <remarks>
|
||||
/// Currently subject to change. If you use this, be prepared to change your code when this class changes.
|
||||
/// </remarks>
|
||||
public class ConsoleTable
|
||||
public class ConsoleDisplayTable
|
||||
{
|
||||
/// <summary>
|
||||
/// Default number of spaces between table columns.
|
||||
@@ -65,7 +65,7 @@ namespace OpenSim.Framework.Console
|
||||
/// </summary>
|
||||
public int TableSpacing { get; set; }
|
||||
|
||||
public ConsoleTable()
|
||||
public ConsoleDisplayTable()
|
||||
{
|
||||
TableSpacing = DefaultTableSpacing;
|
||||
Columns = new List<ConsoleTableColumn>();
|
||||
@@ -145,7 +145,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments
|
||||
{
|
||||
sb.AppendFormat("Attachments for {0}\n", sp.Name);
|
||||
|
||||
ConsoleTable ct = new ConsoleTable() { Indent = 2 };
|
||||
ConsoleDisplayTable ct = new ConsoleDisplayTable() { Indent = 2 };
|
||||
ct.Columns.Add(new ConsoleTableColumn("Attachment Name", 36));
|
||||
ct.Columns.Add(new ConsoleTableColumn("Local ID", 10));
|
||||
ct.Columns.Add(new ConsoleTableColumn("Item ID", 36));
|
||||
|
||||
Reference in New Issue
Block a user