I would like to fill a bug report regarding dbdoclet-7.1.0-92.
The tag @value is not process correctly (class org.dbdoclet.doclet.TagManager); the resolved value is always "Tag(@value): UnknownValueException!"
The bug lies in the method "public String getSeeNamePackage(ProgramElementDoc doc, String name)"
the line 316
pkgName = pkgName.substring(index);
should be replaced by:
pkgName = pkgName.substring(0, index);
(I tested the fix)
Thank you very much for this very useful tool, very much appreciated.
Best regards,
Pierre
The text was updated successfully, but these errors were encountered:
pierre-sion commentedJun 27, 2014
Dear Mr Fuchs,
I would like to fill a bug report regarding dbdoclet-7.1.0-92.
The tag @value is not process correctly (class org.dbdoclet.doclet.TagManager); the resolved value is always "Tag(@value): UnknownValueException!"
The bug lies in the method "public String getSeeNamePackage(ProgramElementDoc doc, String name)"
the line 316
pkgName = pkgName.substring(index);
should be replaced by:
pkgName = pkgName.substring(0, index);
(I tested the fix)
Thank you very much for this very useful tool, very much appreciated.
Best regards,
Pierre
The text was updated successfully, but these errors were encountered: