garyp 01/01/11 02:28:12
Modified: java/src/org/apache/xalan/templates ElemExtensionCall.java
ElemFallback.java
Log:
Change execute with four arguments to executeFallback to clean things up.
Revision Changes Path
1.21 +1 -1
xml-xalan/java/src/org/apache/xalan/templates/ElemExtensionCall.java
Index: ElemExtensionCall.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemExtensionCall.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ElemExtensionCall.java 2001/01/11 10:04:56 1.20
+++ ElemExtensionCall.java 2001/01/11 10:28:11 1.21
@@ -248,7 +248,7 @@
try
{
transformer.pushElemTemplateElement(child);
- ((ElemFallback) child).execute(transformer, sourceNode, mode,
true);
+ ((ElemFallback) child).executeFallback(transformer, sourceNode,
mode);
}
finally
{
1.9 +2 -4
xml-xalan/java/src/org/apache/xalan/templates/ElemFallback.java
Index: ElemFallback.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/ElemFallback.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ElemFallback.java 2001/01/11 10:05:11 1.8
+++ ElemFallback.java 2001/01/11 10:28:11 1.9
@@ -130,13 +130,11 @@
* @param transformer non-null reference to the the current transform-time
state.
* @param sourceNode non-null reference to the <a
href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
* @param mode reference, which may be null, to the <a
href="http://www.w3.org/TR/xslt#modes">current mode</a>.
- * @param dummyArg used to indicate that this method, rather than the
three argument method
- * is to be executed resulting in processing of the fallback
elements.
*
* @throws TransformerException
*/
- public void execute(
- TransformerImpl transformer, Node sourceNode, QName mode, boolean
dummyArg)
+ public void executeFallback(
+ TransformerImpl transformer, Node sourceNode, QName mode)
throws TransformerException
{