This inspection detects conditional breaks at the end or beginning and suggests move condition to loop

Example:

while(true) { if(i == 23) break; i++; }

Will be replaced with:

while(i != 23) { i++; }