Skip to content

Commit

Permalink
Addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
powercode committed Aug 2, 2018
1 parent 3d4b7ff commit 152d1eb
Showing 1 changed file with 4 additions and 6 deletions.
Expand Up @@ -112,8 +112,7 @@ internal static object ArrayToTuple<T>(IList<T> inputObjects, int startIndex)
/// </summary>
public sealed class GroupInfoNoElement : GroupInfo
{
internal GroupInfoNoElement(OrderByPropertyEntry groupValue)
: base(groupValue)
internal GroupInfoNoElement(OrderByPropertyEntry groupValue) : base(groupValue)
{
}

Expand Down Expand Up @@ -250,7 +249,6 @@ public class GroupObjectCommand : ObjectBase
/// <summary>
/// Gets or sets the AsString parameter.
/// </summary>
/// <value></value>
[Parameter(ParameterSetName = "HashTable")]
public SwitchParameter AsString { get; set; }

Expand Down Expand Up @@ -368,8 +366,8 @@ public class GroupObjectCommand : ObjectBase
// create a new group
s_tracer.WriteLine("Create a new group: {0}", currentObjectOrderValues);
GroupInfo newObjGrp = noElement
? new GroupInfoNoElement(currentObjectEntry)
: new GroupInfo(currentObjectEntry);
? new GroupInfoNoElement(currentObjectEntry)
: new GroupInfo(currentObjectEntry);

groups.Add(newObjGrp);

Expand Down Expand Up @@ -556,4 +554,4 @@ protected override void EndProcessing()
}
}
}
}
}

0 comments on commit 152d1eb

Please sign in to comment.