Sonar ignores break in catch block

I am using SonarLint 4.2 with Eclipse.

Sample snippet:

while (true) { // NOSONAR can break!
    try {
        Thread.sleep(1);
    } catch (InterruptedException e) {
        Thread.currentThread().interrupt();
        break;
    }
}

The NOSONAR should not be necessary.

Hi @davidsusu,

Thanks for this input!
I think this case is covered by this ticket: SONARJAVA-1944.
Unfortunately we did not have time to take care of it yet.

Amélie