Skip to content

Commit

Permalink
Resolve 3 remaining test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan-herrmann committed Dec 9, 2024
1 parent d37105b commit 13f7ed6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1798,8 +1798,8 @@ public void close() throws IOException {
},
"",
getCompilerOptions());
Util.delete(new File(OUTPUT_DIR, "org/eclipse/jdt/annotation/Owning.class".replaceAll("/", File.separator)));
Util.delete(new File(OUTPUT_DIR, "org/eclipse/jdt/annotation/NotOwning.class".replaceAll("/", File.separator)));
Util.delete(new File(OUTPUT_DIR, "org/eclipse/jdt/annotation/Owning.class".replace('/', File.separatorChar)));
Util.delete(new File(OUTPUT_DIR, "org/eclipse/jdt/annotation/NotOwning.class".replace('/', File.separatorChar)));

Map<String, String> options = getCompilerOptions();
options.put(CompilerOptions.OPTION_ReportPotentiallyUnclosedCloseable, CompilerOptions.ERROR);
Expand Down

0 comments on commit 13f7ed6

Please sign in to comment.