Skip to content

Commit 31faa54

Browse files
committed
issue #11015 In Doxygen 1.11.0, Include Graphs are not made for Java
Adding code so that also include graphs are shown in Java.
1 parent 559405e commit 31faa54

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/scanner.l

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1941,6 +1941,10 @@ NONLopt [^\n]*
19411941
BEGIN(Using);
19421942
}
19431943
<JavaImport>({ID}{BN}*"."{BN}*)+{ID} { // class import => add as a using declaration
1944+
ModuleManager::instance().addImport(yyextra->fileName,
1945+
yyextra->yyLineNr,
1946+
yytext,
1947+
yyextra->current->exported);
19441948
lineCount(yyscanner);
19451949
QCString scope=yytext;
19461950
yyextra->current->name=removeRedundantWhiteSpace(substitute(scope,".","::"));

0 commit comments

Comments
 (0)