Fixup from review (#5112)
Co-authored-by: Clément Fournier <clement.fournier76@gmail.com>
This commit is contained in:
1 parent
21d499d5ef
commit
13b8556bf6
1 file changed
+1
-1
+1
-1
@@ -208,7 +208,7 @@ public final class SymbolTableResolver {
|
||||
List<ASTImportDeclaration> singleImports = new ArrayList<>();
|
||||
List<ASTImportDeclaration> moduleImports = new ArrayList<>();
|
||||
|
||||
node.children(ASTImportDeclaration.class).toStream().forEach(i -> {
|
||||
node.children(ASTImportDeclaration.class).forEach(i -> {
|
||||
if (i.isModule()) {
|
||||
moduleImports.add(i);
|
||||
} else if (i.isImportOnDemand()) {
|
||||
|
||||
Reference in new issue
Block a user