mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
Before for String.class the "Class<String> type was returned (instead of simply "String" type). This was usually fine, but for int.class and Integer.class the same "Class<Integer>" type was returned, despite the constants are different.
11 lines
142 B
Java
11 lines
142 B
Java
// "Remove redundant parameter" "false"
|
|
|
|
@interface Anno {
|
|
Class foo() default void.class;
|
|
}
|
|
|
|
@Anno(foo = Vo<caret>id.class)
|
|
class Foo {
|
|
|
|
}
|