Author: mriou
Date: Tue Aug 29 08:20:27 2006
New Revision: 438098
URL: http://svn.apache.org/viewvc?rev=438098&view=rev
Log:
Warnings are really warnings (and don't abort the compilation).
Modified:
incubator/ode/trunk/bpel-el-xpath10/src/main/java/org/apache/ode/bpel/elang/xpath10/compiler/XPathMessages.java
Modified:
incubator/ode/trunk/bpel-el-xpath10/src/main/java/org/apache/ode/bpel/elang/xpath10/compiler/XPathMessages.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-el-xpath10/src/main/java/org/apache/ode/bpel/elang/xpath10/compiler/XPathMessages.java?rev=438098&r1=438097&r2=438098&view=diff
==============================================================================
---
incubator/ode/trunk/bpel-el-xpath10/src/main/java/org/apache/ode/bpel/elang/xpath10/compiler/XPathMessages.java
(original)
+++
incubator/ode/trunk/bpel-el-xpath10/src/main/java/org/apache/ode/bpel/elang/xpath10/compiler/XPathMessages.java
Tue Aug 29 08:20:27 2006
@@ -74,7 +74,7 @@
}
/** The string "{0}" is not a valid XPath 1.0 expression. */
- public CompilationMessage errXPath20Syntax(String xPathString, String
message) {
+ public CompilationMessage warnXPath20Syntax(String xPathString, String
message) {
return super.formatCompilationMessage(
"The string \"{0}\" is not a valid XPath 2.0 expression: {1}",
xPathString, message);
}