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:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2006-08-03 16:42:30 +0400
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2006-08-03 16:42:30 +0400
commit8306e7cb525f3a5be01543f3911ed1d051a88247 (patch)
treef4ae13a2c8e87d745aada1eb87c4b91ff57ddd38 /mcs/class/System.XML/Mono.Xml.Xsl
parent324ddd070153ad6bca26201045a4c413be2ee14c (diff)
TARGET_JVM: add msbuild project file
svn path=/trunk/mcs/; revision=63287
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl/XslDecimalFormat.jvm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl/XslDecimalFormat.jvm.cs b/mcs/class/System.XML/Mono.Xml.Xsl/XslDecimalFormat.jvm.cs
index dbdbbc64fc3..8be09aad626 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl/XslDecimalFormat.jvm.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl/XslDecimalFormat.jvm.cs
@@ -132,7 +132,7 @@ namespace Mono.Xml.Xsl {
public void CheckSameAs (XslDecimalFormat other)
{
- if (! this.javaFormat.equals (other.javaFormat))
+ if (! this.javaFormat.Equals (other.javaFormat))
throw new XsltCompileException (null, other.baseUri, other.lineNumber, other.linePosition);
}