Skip to content
This repository was archived by the owner on Jan 7, 2021. It is now read-only.

Commit 14d9b1d

Browse files
committed
Fixed build.
1 parent cb4f3d0 commit 14d9b1d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

XmlAbstraction/XmlObject.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ public string TryRead(string elementname)
588588
{
589589
try
590590
{
591-
return Read(elementname);
591+
return this.Read(elementname);
592592
}
593593
catch (ArgumentException)
594594
{
@@ -614,7 +614,7 @@ public string TryRead(string elementname, string attributename)
614614
{
615615
try
616616
{
617-
return Read(elementname, attributename);
617+
return this.Read(elementname, attributename);
618618
}
619619
catch (ArgumentException)
620620
{
@@ -647,16 +647,16 @@ public string[] TryRead(string parentelementname, string elementname, object unu
647647
{
648648
try
649649
{
650-
return Read(elementname, attributename);
650+
return this.Read(parentelementname, elementname, unused);
651651
}
652652
catch (ArgumentException)
653653
{
654654
if (!this.CachedXmlfilename.Equals(":memory"))
655655
{
656-
this.Write(parentelementname, attributename, string.Empty);
656+
this.Write(parentelementname, string.Empty);
657657
}
658658

659-
return string.Empty;
659+
return new string[] { };
660660
}
661661
}
662662

0 commit comments

Comments
 (0)