I have been reading some open source libraries which use the following code:
//noinspection ForLoopReplaceableByForEach
for (int i = 0, count = list.size(); i < count; i++) {
// do something
}
What does //noinspection ForLoopReplaceableByForEach
mean?