jvanzyl 00/10/03 10:08:02
Modified: src/java/org/apache/velocity/runtime/directive
Directive.java Dummy.java Foreach.java
Log:
- no longer need the number of args for a directive.
Revision Changes Path
1.2 +0 -1
jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Directive.java
Index: Directive.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Directive.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Directive.java 2000/09/30 17:04:22 1.1
+++ Directive.java 2000/10/03 17:08:00 1.2
@@ -14,7 +14,6 @@
public String getName();
public int getType();
- public int getArgs();
public void render(Context context, Writer writer, Node node)
throws IOException;
1.2 +0 -1
jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Dummy.java
Index: Dummy.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Dummy.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Dummy.java 2000/10/03 17:06:38 1.1
+++ Dummy.java 2000/10/03 17:08:01 1.2
@@ -11,7 +11,6 @@
{
public String getName() { return "dummy"; }
public int getType() { return LINE; }
- public int getArgs() { return 3; }
public void render(Context context, Writer writer, Node node)
throws IOException
1.3 +0 -1
jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Foreach.java
Index: Foreach.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/directive/Foreach.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Foreach.java 2000/10/03 17:05:43 1.2
+++ Foreach.java 2000/10/03 17:08:01 1.3
@@ -18,7 +18,6 @@
{
public String getName() { return "foreach"; }
public int getType() { return BLOCK; }
- public int getArgs() { return 3; }
public void render(Context context, Writer writer, Node node)
throws IOException