How Do I Run Condition Is Always False Inspection On Whole Project?
The following code will show a warning in the editor.
Double amtD = Double.NaN;
if(amtD==null){
}
Condition 'amtD==null' is always 'false'
I can't seem to find this inspection in Analyze - Run Inspection By Name.
Is it possible to run it on the whole project?
Please sign in to leave a comment.