giacomo 00/12/10 11:49:52
Modified: src/org/apache/cocoon/selection Tag: xml-cocoon2
CodedSelectorFactory.java
Log:
Fixed a typo
Revision Changes Path
No revision
No revision
1.1.2.5 +2 -3
xml-cocoon/src/org/apache/cocoon/selection/Attic/CodedSelectorFactory.java
Index: CodedSelectorFactory.java
===================================================================
RCS file:
/home/cvs/xml-cocoon/src/org/apache/cocoon/selection/Attic/CodedSelectorFactory.java,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -r1.1.2.4 -r1.1.2.5
--- CodedSelectorFactory.java 2000/12/10 14:18:39 1.1.2.4
+++ CodedSelectorFactory.java 2000/12/10 19:49:52 1.1.2.5
@@ -18,7 +18,7 @@
* embedded java code within the 'test' clause of the select.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Marcus Crafter</a>
- * @version CVS $Revision: 1.1.2.4 $ $Date: 2000/12/10 14:18:39 $
+ * @version CVS $Revision: 1.1.2.5 $ $Date: 2000/12/10 19:49:52 $
*/
public class CodedSelectorFactory extends java.lang.Object
implements CodeFactory {
@@ -52,8 +52,7 @@
sb.append( "try {" )
.append("return pattern.evaluate(objectModel);" )
.append("} catch (Exception e) {" )
- .append("log.error(\"CodedSelector Exception : \"
- + e.getMessage() + \", returning false\");" )
+ .append("log.error(\"CodedSelector Exception : \" + e.getMessage()
+ \", returning false\");" )
.append( "return false;" )
.append( "}" );