User: vharcq
Date: 02/03/28 11:37:56
Modified: core/src/xdoclet XDocletTagSupport.java
Log:
Patch 536333 Thanks to Ludovic
Revision Changes Path
1.29 +4 -4 xdoclet/core/src/xdoclet/XDocletTagSupport.java
Index: XDocletTagSupport.java
===================================================================
RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/XDocletTagSupport.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -w -r1.28 -r1.29
--- XDocletTagSupport.java 26 Mar 2002 00:01:17 -0000 1.28
+++ XDocletTagSupport.java 28 Mar 2002 19:37:54 -0000 1.29
@@ -32,7 +32,7 @@
*
* @author Dmitri Colebatch ([EMAIL PROTECTED])
* @created October 12, 2001
- * @version $Revision: 1.28 $
+ * @version $Revision: 1.29 $
*/
public abstract class XDocletTagSupport extends TemplateTagHandler
{
@@ -687,15 +687,15 @@
if (delim != null)
{
if (delim.equals("()") && attribute_value.indexOf(delim) != -1)
- attribute_value = "";
+ attribute_value = null;
else
{
StringTokenizer st = new StringTokenizer(attribute_value,delim);
- String tok = "";
+ String tok = null;
for (int i = 0; i <= tokenNumber; i ++)
{
if (st.hasMoreTokens()) tok = st.nextToken();
- else tok = "";
+ else tok = null;
}
attribute_value = tok;
}
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel