User: ko5tik  
  Date: 02/07/18 07:37:52

  Modified:    src/xjavadoc XDoc.java
  Log:
  fixed dotted() behaviour - convert : to . and
  not otherwise
  
  Revision  Changes    Path
  1.44      +1 -1      xjavadoc/src/xjavadoc/XDoc.java
  
  Index: XDoc.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/XDoc.java,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -w -r1.43 -r1.44
  --- XDoc.java 17 Jul 2002 00:34:16 -0000      1.43
  +++ XDoc.java 18 Jul 2002 14:37:52 -0000      1.44
  @@ -160,7 +160,7 @@
                 * }
                 */
                // This will parse the string once.
  -             return tagName.replace( '.', ':' );
  +             return tagName.replace( ':', '.' );
        }
   //   private final static boolean isTabOrSpace(String s) {
   //           return (s.charAt(0) == ' ') || (s.charAt(0) == '\t');
  
  
  


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to