mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Fixes IDEA-238619 Wrong warning in for-loop over float GitOrigin-RevId: 40b05cb62617bd6130852837463fc0dd061806a6
10 lines
151 B
Java
10 lines
151 B
Java
import java.util.*;
|
|
|
|
public class FloatLoop {
|
|
void test() {
|
|
for(float f = 0.0f; f != 2.0f; f += 0.01f){
|
|
System.out.println(f);
|
|
}
|
|
}
|
|
}
|