You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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: