2004-08-25 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 25 Aug 2004 11:40:50 +0000 (11:40 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 25 Aug 2004 11:40:50 +0000 (11:40 -0000)
* removed IXmlCompilerInclude.cs (does not exist anymore).

svn path=/trunk/mcs/; revision=32821

mcs/class/System.XML/System.Xml.Query/ChangeLog
mcs/class/System.XML/System.Xml.Query/IXmlCompilerInclude.cs [deleted file]

index da2295a26077e540c415fa05dd94da65d91a98a0..cfcccfaafce63aa9998da14433e3b157c4d039e8 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-25  Atsushi Enomoto <atsushi@ximian.com>
+
+       * removed IXmlCompilerInclude.cs (does not exist anymore).
+
 2004-08-25  Atsushi Enomoto <atsushi@ximian.com>
 
        * SequenceType.cs : moved type inference method to XPathAtomicValue.
diff --git a/mcs/class/System.XML/System.Xml.Query/IXmlCompilerInclude.cs b/mcs/class/System.XML/System.Xml.Query/IXmlCompilerInclude.cs
deleted file mode 100755 (executable)
index e210749..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-//
-// IXmlCompilerInclude.cs
-//
-// Author:
-//     Atsushi Enomoto <atsushi@ximian.com>
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// 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.Xml;
-using MS.Internal.Xml.Query;
-
-namespace System.Xml.Query
-{
-       public interface IXmlCompilerInclude
-       {
-               XmlExpression ResolveContextDocument ();
-
-               XmlExpression ResolveFunction (XmlQualifiedName name, object [] parameters);
-
-               XmlExpression ResolveVariable (XmlQualifiedName varName);
-       }
-}
-
-// FIXME: This class should be in System.Xml in the future, but MS still keeps
-// this class in MS.Internal
-
-namespace MS.Internal.Xml.Query
-{
-       public class XmlExpression
-       {
-       }
-}
-#endif