Move ctor initializers to their own line.

This commit is contained in:
Paul Chote
2019-06-08 12:59:02 +01:00
committed by reaperrr
parent 979ed1b140
commit 674155a8dd
33 changed files with 90 additions and 44 deletions

View File

@@ -133,7 +133,8 @@ namespace OpenRA
return ret;
}
public MiniYaml(string value) : this(value, null) { }
public MiniYaml(string value)
: this(value, null) { }
public MiniYaml(string value, List<MiniYamlNode> nodes)
{
@@ -474,6 +475,7 @@ namespace OpenRA
[Serializable]
public class YamlException : Exception
{
public YamlException(string s) : base(s) { }
public YamlException(string s)
: base(s) { }
}
}