summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-05-24 12:44:56 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-05-24 12:44:56 (GMT)
commit25f25430c340d5bdd107a6098e684880cec54926 (patch)
tree3abf01e21f5f35508f7a65592b2c105284ef8d85
parent333d6e67cde82ceed413fa7fb2e18c1232279e1b (diff)
downloadDoxygen-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.l4
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);