mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
8 lines
134 B
Java
8 lines
134 B
Java
// "Remove redundant cast(s)" "true-preview"
|
|
class Test {
|
|
{
|
|
int i = 1;
|
|
int j = 2;
|
|
System.out.println(j * (i % j));
|
|
}
|
|
} |