Skip to content

Instantly share code, notes, and snippets.

@shervinafshar
shervinafshar / supress-warning-idea.md
Last active February 11, 2022 01:14 — forked from vegaasen/supress-warning-idea.md
SuppressWarnings with IntelliJ Idea

Usage

Following is an example related to the usage of the various ignore capabilities.

	@SuppressWarnings("MagicCharacter")
	@SuppressWarnings("AssertStatement")
	@SuppressWarnings("AwaitWithoutCorrespondingSignal")
	@SuppressWarnings("ConstantConditions")

@SuppressWarnings("rawtypes")