Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Close() nits.
  • Loading branch information
StephenMolloy authored and github-actions committed Aug 21, 2021
commit f7596325b87d0449035f280d0ec43b49fd0971d2
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ private bool IsReadingComplexText

public override void Close()
{
base.Close();
OnXmlDictionaryReaderClose? onClose = _onReaderClose;
_onReaderClose = null;
ResetState();
Expand All @@ -354,6 +353,8 @@ public override void Close()
throw new InvalidOperationException(SR.GenericCallbackException, e);
}
}

base.Close();
}

public override void EndCanonicalization()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ public override void Close()
}
}
}

base.Close();
}

public override void Flush()
Expand Down