Is it possible to disable duplicate code detection in Intellij?
I haven\'t found this feature to be useful and it continues to distract me.
This answer may be little irrelevant, but I found this helpful, From this answer if you want to disable it for a specific code block, not the entire method or class or ide, then just add the following line just before that code block
//noinspection Duplicates
Note: You can not put any other comment after this line.