Skip to content

Commit

Permalink
Remove redundant parent class
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Jun 27, 2019
1 parent 9311cfb commit ee5995f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TestUtils/TestConfigNode.cs
Expand Up @@ -9,7 +9,7 @@ public class TestConfigNode : ConfigNode, IEnumerable
public TestConfigNode(string name) : base(name) { }

public void Add(string name, string value) => AddValue(name, value);
public void Add(ConfigNode.Value value) => values.Add(value);
public void Add(Value value) => values.Add(value);
public void Add(string name, ConfigNode node) => AddNode(name, node);
public void Add(ConfigNode node) => AddNode(node);

Expand Down

0 comments on commit ee5995f

Please sign in to comment.