Duplicated block of Code in Sonar

The Duplicate Blocks rule raises issues at the file level. So it's not trying to tell you that your import statement is duplicated, but that somewhere in the file is a duplicate block. If you'll scroll down, you should see a vertical yellow/orange bar in the left margin. It marks the duplicate block. Click on the bar to get details of where the block is duplicated.


I had same issue on my project. Abstract class implemented with two other classes with same overrides. Sonar issued this as same block. But actually it was not. Anyway I get rid of it by replacing method order in one of that classes.

转载自:https://stackoverflow.com/questions/36111476/duplicated-block-of-code-in-sonar-for-import-statements-in-java

你可能感兴趣的:(后端开发,#,Sonar常见issue修复)