diff options
author | albert-github <albert.tests@gmail.com> | 2021-05-24 12:44:56 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2021-05-24 12:44:56 (GMT) |
commit | 25f25430c340d5bdd107a6098e684880cec54926 (patch) | |
tree | 3abf01e21f5f35508f7a65592b2c105284ef8d85 | |
parent | 333d6e67cde82ceed413fa7fb2e18c1232279e1b (diff) | |
download | Doxygen-25f25430c340d5bdd107a6098e684880cec54926.zip Doxygen-25f25430c340d5bdd107a6098e684880cec54926.tar.gz Doxygen-25f25430c340d5bdd107a6098e684880cec54926.tar.bz2 |
issue #8541 Javadoc: external links to classes in java.lang are not resolved
A `::` at the end is not necessary, intenmtion was to use make explicitly, by ".*` that all subpackages were used but that is not necessary.
-rw-r--r-- | src/scanner.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l index b5a9c05..f3d0bc3 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -7563,8 +7563,8 @@ static void parseMain(yyscan_t yyscanner, } else if ( yyextra->insideJava ) { - QCString scope="java.lang.*"; - yyextra->current->name=removeRedundantWhiteSpace(substitute(scope.left(scope.length()-1),".","::")); + QCString scope="java.lang"; + yyextra->current->name=removeRedundantWhiteSpace(substitute(scope,".","::")); yyextra->current->fileName = yyextra->yyFileName; yyextra->current->section=Entry::USINGDIR_SEC; yyextra->current_root->moveToSubEntryAndRefresh(yyextra->current); |