From 304437b834e8c87687f68333ae67a13ee1377a73 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Wed, 12 Jun 2019 21:47:51 +0200 Subject: Adjust Codestyle --- dsa/DSALib/Auxiliary/CommandInfo.cs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'dsa/DSALib/Auxiliary/CommandInfo.cs') diff --git a/dsa/DSALib/Auxiliary/CommandInfo.cs b/dsa/DSALib/Auxiliary/CommandInfo.cs index d8e2188..80cc854 100644 --- a/dsa/DSALib/Auxiliary/CommandInfo.cs +++ b/dsa/DSALib/Auxiliary/CommandInfo.cs @@ -1,11 +1,8 @@ using System.Linq; -namespace DSALib.Auxiliary -{ - public struct CommandInfo - { - public CommandInfo(string name, string brief, string[] description, string scope) - { +namespace DSALib.Auxiliary { + public struct CommandInfo { + public CommandInfo(string name, string brief, string[] description, string scope) { Name = name; Scope = scope; Brief = brief; @@ -20,8 +17,7 @@ namespace DSALib.Auxiliary public string[] Description { get; } - public string GetDescription() - { + public string GetDescription() { return Description.Aggregate((s, c) => s + c); } } -- cgit v1.2.3-54-g00ecf