Search
Calendar
May 2025
S M T W T F S
« Apr    
 123
45678910
11121314151617
18192021222324
25262728293031
Archives

PostHeaderIcon Sonar / Dead store of null to local variable

How to fix the Sonar’s following report?

Dodgy - Dead store of null to local variable

Remove assignments at null of local variables that will not be read. Since Java 6, they have no interest and no effect on garbage collector.
Eg: remove the last assignment, in the line#4

void foo(){
    String goo = "hello world";
    (...)
    goo = null;
}

Leave a Reply