From c27387a65da15c8cd068ce7b4470ff0edaab26a1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 8 Jul 2026 02:29:19 +0000 Subject: [PATCH 1/2] Initial plan From bf78af54d3658fd37784312bb9826695a320c804 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 8 Jul 2026 02:55:44 +0000 Subject: [PATCH 2/2] Remove #region directives from XmlReaderPullParser Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com> --- .../Android.Runtime/XmlReaderPullParser.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/Mono.Android/Android.Runtime/XmlReaderPullParser.cs b/src/Mono.Android/Android.Runtime/XmlReaderPullParser.cs index f474734ec88..988642e2fad 100644 --- a/src/Mono.Android/Android.Runtime/XmlReaderPullParser.cs +++ b/src/Mono.Android/Android.Runtime/XmlReaderPullParser.cs @@ -28,14 +28,13 @@ public XmlReaderResourceParser (XmlReader r) this.r = r; } - #region IXmlResourceParser implementation + // IXmlResourceParser implementation public void Close () { r.Close (); } - #endregion - #region IAttributeSet implementation + // IAttributeSet implementation public bool GetAttributeBooleanValue (int index, bool defaultValue) { return index < AttributeCount ? XmlConvert.ToBoolean (GetAttributeValue (index)) : defaultValue; @@ -121,7 +120,6 @@ public string? IdAttribute { public int StyleAttribute { get { return GetAttributeResourceValue (null, "style", 0); } } - #endregion } public class XmlReaderPullParser : Java.Lang.Object, IXmlPullParser @@ -145,7 +143,7 @@ public XmlReaderPullParser (XmlReader r) this.r = r; } - #region IXmlPullParser implementation + // IXmlPullParser implementation public void DefineEntityReplacementText (string? entityName, string? replacementText) { throw new NotSupportedException (); @@ -481,7 +479,5 @@ public string Text { return r.Value; } } - #endregion } } -