Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-12-14 19:02:29 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-12-14 19:02:29 +0300
commitd6003e95d68f06327b41e4c59b5333d81629f64a (patch)
tree2396d0c601aadb5931f02224b72a1f75c400785a /mcs/class/System.XML
parentd4caf7151f21a0558b6007bf4525556ea6aeb9d3 (diff)
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
* XPathNavigatorReader.cs : oh, so it used to compile under 1.x. svn path=/trunk/mcs/; revision=54365
Diffstat (limited to 'mcs/class/System.XML')
-rw-r--r--mcs/class/System.XML/Mono.Xml.XPath/ChangeLog4
-rw-r--r--mcs/class/System.XML/Mono.Xml.XPath/XPathNavigatorReader.cs2
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
index 35fcc865ea5..2e038e25d5a 100644
--- a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
@@ -1,5 +1,9 @@
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+ * XPathNavigatorReader.cs : oh, so it used to compile under 1.x.
+
+2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
+
* XPathNavigatorReader.cs : several fixes.
- Unless ReadState is Interactive, all name stuff should return "".
- Refactored Read() to work fine when input navigator is Root.
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/XPathNavigatorReader.cs b/mcs/class/System.XML/Mono.Xml.XPath/XPathNavigatorReader.cs
index 273f3cb18a8..195ed83361f 100644
--- a/mcs/class/System.XML/Mono.Xml.XPath/XPathNavigatorReader.cs
+++ b/mcs/class/System.XML/Mono.Xml.XPath/XPathNavigatorReader.cs
@@ -27,6 +27,7 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+#if NET_2_0
using System;
using System.Text;
@@ -754,3 +755,4 @@ namespace Mono.Xml.XPath
}
}
+#endif