Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Environment:WindowsNT/2000, JDK1.3.1
-
Number of attachments :
Description
The generated documentations has wrong package directories if the package contains an underscore.
The fix could be the following:
Class 'org.apache.maven.jxr.pacman.JavaFileImpl'. The
used StreamTokenizer has to be extended by '_' as a word character:
private StreamTokenizer getTokenizer() throws IOException
{ ... stok.commentChar('*'); stok.wordChars('_', '_'); // add here the underscore character as an word character ... }
Applied