Skip to content

Commit

Permalink
add unhandledWarningToken to Eclipse's ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Sep 4, 2024
1 parent 50d70d0 commit d6381ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ val eclipsePreferences by tasks.registering {
addPreferences("org.eclipse.core.resources.prefs", mapOf(
"encoding/<project>" to "UTF-8"))
addPreferences("org.eclipse.jdt.core.prefs", mapOf(
"org.eclipse.jdt.core.compiler.problem.unusedWarningToken" to "ignore"))
"org.eclipse.jdt.core.compiler.problem.unusedWarningToken" to "ignore",
"org.eclipse.jdt.core.compiler.problem.unhandledWarningToken" to "ignore"))
}
}

Expand Down

0 comments on commit d6381ca

Please sign in to comment.