User: rinkrank
  Date: 02/07/02 18:36:58

  Modified:    core/src/xdoclet XDocletTagSupport.java
  Log:
  Fixed bug #576560
  
  It was actually due to incorrect handling of dotted tags .
  
  Revision  Changes    Path
  1.48      +3 -3      xdoclet/core/src/xdoclet/XDocletTagSupport.java
  
  Index: XDocletTagSupport.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/XDocletTagSupport.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -w -r1.47 -r1.48
  --- XDocletTagSupport.java    8 Jun 2002 12:37:25 -0000       1.47
  +++ XDocletTagSupport.java    3 Jul 2002 01:36:57 -0000       1.48
  @@ -35,7 +35,7 @@
    *
    * @author    Dmitri Colebatch ([EMAIL PROTECTED])
    * @created   October 12, 2001
  - * @version   $Revision: 1.47 $
  + * @version   $Revision: 1.48 $
    */
   public abstract class XDocletTagSupport extends TemplateTagHandler
   {
  @@ -517,7 +517,7 @@
           else if (forType == FOR_CLASS)
               tag = getCurrentClassTag();
   
  -        if (tag != null && !tag.getName().equals(tagName))
  +        if (tag != null && !tag.getName().equals(XDoc.dotted(tagName)))
               tag = null;
   
           if (tag == null) {
  @@ -601,7 +601,7 @@
           else if (forType == FOR_CLASS)
               currentTag = getCurrentClassTag();
   
  -        if (currentTag != null && currentTag.getName().equals(tagName)) {
  +        if (currentTag != null && 
currentTag.getName().equals(XDoc.dotted(tagName))) {
               attributeValue = currentTag.getAttributeValue(paramName);
           }
           else {
  
  
  


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
No, I will not fix your computer.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to