Detects conditional breaks at the beginning or end of a loop and suggests to use a loop condition instead. Example:
while(true) { if(i == 23) break; i++; }
Will be replaced with:
while(i != 23) { i++; }