2003-12-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 16 Dec 2003 03:55:33 +0000 (03:55 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 16 Dec 2003 03:55:33 +0000 (03:55 -0000)
* XsltCompiledContext.cs : Temporarily allow incorrectly resolved
  function for bugzilla #52144. It should be reverted soon.

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

mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
mcs/class/System.XML/Mono.Xml.Xsl/XsltCompiledContext.cs

index e902f166448b090ece89d892e8dcc06465b5e6e9..2edc4050757b9cb54dbafbb14dc253af3ff1e03e 100644 (file)
@@ -1,3 +1,8 @@
+2003-12-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XsltCompiledContext.cs : Temporarily allow incorrectly resolved
+         function for bugzilla #52144. It should be reverted soon.
+
 2003-12-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
 
        * ScriptCompilerInfo.cs : SecurityManager.ResolvePolicy() was not 
index ba8a96f325dcea7c1bd748405a2fbcc683760986..ace588872ac43874c04baf4bfc3b463ce6aeb95c 100644 (file)
@@ -371,9 +371,9 @@ namespace Mono.Xml.Xsl.Functions {
 
                                return result;
                        } catch (Exception ex) {
-                               throw new XsltException ("Custom function reported an error.", ex);
-//                             Debug.WriteLine ("****** INCORRECT RESOLUTION **********");
-//                             return "";
+//                             throw new XsltException ("Custom function reported an error.", ex);
+                               Debug.WriteLine ("****** INCORRECT RESOLUTION **********");
+                               return "";
                        }
                }
        }