mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
IDEA-164851 Inspection "redundant default parameter value assignment" does not work on all parame...
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Remove redundant parameter" "true"
|
||||
|
||||
@interface Anno {
|
||||
Class foo() default void.class;
|
||||
}
|
||||
|
||||
@Anno()
|
||||
class Foo {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Remove redundant parameter" "true"
|
||||
|
||||
@interface Anno {
|
||||
Class foo() default void.class;
|
||||
}
|
||||
|
||||
@Anno(foo = vo<caret>id.class)
|
||||
class Foo {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user