mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-03 21:21:37 +07:00
in "Constant expression can be evaluated" inspection GitOrigin-RevId: aa1bac4aef1e306c5c9671b9cdf3aca638feb95b
10 lines
251 B
Java
10 lines
251 B
Java
// "Fix all 'Constant expression can be evaluated' problems in file" "false"
|
|
|
|
class ConstantCast {
|
|
static void doSomething(String param1, byte param2) {
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
doSomething(args[0], (byte)<caret> 0);
|
|
}
|
|
} |