geirm 00/11/11 22:38:47
Modified: src/java/org/apache/velocity/runtime/directive Include.java
Log:
Removed spurious ';'.
Revision Changes Path
1.2 +2 -2
jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Include.java
Index: Include.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Include.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Include.java 2000/11/06 04:10:19 1.1
+++ Include.java 2000/11/12 06:38:47 1.2
@@ -91,7 +91,7 @@
* special separator.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
- * @version $Id: Include.java,v 1.1 2000/11/06 04:10:19 geirm Exp $
+ * @version $Id: Include.java,v 1.2 2000/11/12 06:38:47 geirm Exp $
*/
public class Include extends Directive
{
@@ -209,7 +209,7 @@
* we will put caching here in the future...
*/
- File file = new File(strTemplatePath, strArg);;
+ File file = new File(strTemplatePath, strArg);
try
{