Back to Intellij Community

OverflowingLoopIndex

java/java-impl/resources/inspectionDescriptions/OverflowingLoopIndex.html

2025.3-rc-2310 B
Original Source

Reports loops that cannot be completed without an index overflow or loops that don't loop at all. It usually happens because of a mistake in the update operation.

Example:

void foo(int s) {
    for (int i = s; i > 12; i++) { // i-- should be here
      System.out.println(i);
    }
  }

New in 2019.1