Skip to content

Commit

Permalink
Ignore Unsupported SuppressWarning message
Browse files Browse the repository at this point in the history
Fixes #1062

This PR simply sets the preference to 'Ignore', in the case that someone wants the option to
turn it back on another PR will be needed to create a preference

Signed-off-by: Nikolas Komonen <[email protected]>
  • Loading branch information
NikolasKomonen authored and fbricon committed Sep 2, 2019
1 parent e6f6454 commit 456aaa0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public static void initialize() {
javaCoreOptions.put(JavaCore.CODEASSIST_VISIBILITY_CHECK, JavaCore.ENABLED);
javaCoreOptions.put(JavaCore.COMPILER_RELEASE, JavaCore.ENABLED);
javaCoreOptions.put(DefaultCodeFormatterConstants.FORMATTER_USE_ON_OFF_TAGS, DefaultCodeFormatterConstants.TRUE);
javaCoreOptions.put(JavaCore.COMPILER_PB_UNHANDLED_WARNING_TOKEN, JavaCore.IGNORE);
JavaCore.setOptions(javaCoreOptions);

// Initialize default preferences
Expand Down

0 comments on commit 456aaa0

Please sign in to comment.