mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 15:45:49 +07:00
ea73b88a7c
GitOrigin-RevId: 7fe48d0f72581221a633373933b941c09b2c69ed
8 lines
126 B
Java
8 lines
126 B
Java
// "Remove redundant cast(s)" "true"
|
|
class Test {
|
|
{
|
|
int i = 1;
|
|
int j = 2;
|
|
System.out.println(j * (i % j));
|
|
}
|
|
} |