Ignore:
Timestamp:
Sep 4, 2018, 1:00:48 PM (6 years ago)
Author:
alloc
Message:

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/AllocsCommands/Commands/ListItems.cs

    r306 r325  
    22using System.Collections.Generic;
    33
    4 namespace AllocsFixes.CustomCommands
    5 {
    6         public class ListItems : ConsoleCmdAbstract
    7         {
    8                 public override string GetDescription ()
    9                 {
     4namespace AllocsFixes.CustomCommands {
     5        public class ListItems : ConsoleCmdAbstract {
     6                public override string GetDescription () {
    107                        return "lists all items that contain the given substring";
    118                }
    129
    13                 public override string[] GetCommands ()
    14                 {
    15                         return new string[] { "listitems", "li" };
     10                public override string[] GetCommands () {
     11                        return new[] {"listitems", "li"};
    1612                }
    1713
    1814                public override string GetHelp () {
    1915                        return "List all available item names\n" +
    20                                 "Usage:\n" +
    21                                 "   1. listitems <searchString>\n" +
    22                                 "   2. listitems *\n" +
    23                                 "1. List only names that contain the given string.\n" +
    24                                 "2. List all names.";
     16                               "Usage:\n" +
     17                               "   1. listitems <searchString>\n" +
     18                               "   2. listitems *\n" +
     19                               "1. List only names that contain the given string.\n" +
     20                               "2. List all names.";
    2521                }
    2622
    27                 public override void Execute (List<string> _params, CommandSenderInfo _senderInfo)
    28                 {
     23                public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) {
    2924                        try {
    3025                                if (_params.Count != 1 || _params [0].Length == 0) {
     
    3429
    3530                                int count = ItemClass.ItemNames.Count;
    36                                 bool showAll = _params[0].Trim().Equals("*");
     31                                bool showAll = _params [0].Trim ().Equals ("*");
    3732
    3833                                int listed = 0;
Note: See TracChangeset for help on using the changeset viewer.