mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 459b5f435f389fc42b0b1b1ba2b08c458be8bafe
8 lines
131 B
Java
8 lines
131 B
Java
// "Remove redundant cast" "true-preview"
|
|
class Test {
|
|
{
|
|
int i = 1;
|
|
int j = 2;
|
|
System.out.println(j * (i % j));
|
|
}
|
|
} |