IntelliJ-Idea disable inspection: Actual value of parameter is always

@SuppressWarnings("SameParameterValue")

I tested it in Android Studio 3.5, which is based on IntelliJ-Idea, so it probably works in other IntelliJ-Idea based IDEs too.


Find an instance of the inspection, and hit ALT+ENTER to open the content menu. You'll see a suggestion there that looks like "Inline value 'XYZ' for parameter 'myParameter'". Click the right arrow next to it to open a second context menu, and there you'll find options to edit the inspection setting in order to tune the conditions that will produce it, suppress it for the method/class/parameter, or even disable it altogether.


Use @SuppressWarnings("SameParameterValue") in java

and @Suppress("SameParameterValue") in kotlin

Tested on Android Studio Arctic Fox | 2020.3.1