Skip to content

Commit 6ed0ba2

Browse files
author
Vicente Romero
committedMar 23, 2022
8283543: indentation error at com.sun.tools.javac.comp.Enter::visitTopLevel
Reviewed-by: darcy, iris
1 parent 91fab6a commit 6ed0ba2

File tree

1 file changed

+1
-1
lines changed
  • src/jdk.compiler/share/classes/com/sun/tools/javac/comp

1 file changed

+1
-1
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Enter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ public void visitTopLevel(JCCompilationUnit tree) {
377377
ClassSymbol c = syms.enterClass(tree.modle, name, tree.packge);
378378
c.flatname = names.fromString(tree.packge + "." + name);
379379
c.classfile = c.sourcefile = tree.sourcefile;
380-
c.completer = Completer.NULL_COMPLETER;
380+
c.completer = Completer.NULL_COMPLETER;
381381
c.members_field = WriteableScope.create(c);
382382
tree.packge.package_info = c;
383383
tree.packge.sourcefile = tree.sourcefile;

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 23, 2022

@openjdk-notifier[bot]
Please sign in to comment.