Skip to content

Commit

Permalink
Merge pull request #6 from lahodaj/JDK-8224922-4
Browse files Browse the repository at this point in the history
Adding forgotten file/fixing test.
  • Loading branch information
jddarcy committed Nov 18, 2021
2 parents 04e8ea4 + 4e44aaa commit a62ff19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ public JavaFileObject getFileObjectOf(Element e) {
}
yield msym.module_info.classfile;
}
case TYP -> ((ClassSymbol) sym).outermostClass().classfile;
default -> sym.outermostClass().classfile;
case TYP -> ((ClassSymbol) sym).classfile;
default -> sym.enclClass().classfile;
};
}

Expand Down

0 comments on commit a62ff19

Please sign in to comment.