mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-133946 Don't highlight private constructor as unused if it is called by dependency injection engine
This commit is contained in:
@@ -2,6 +2,13 @@ class a extends Exception {
|
||||
private <warning descr="Private constructor 'a(java.lang.String)' is never used">a</warning>(String s) {
|
||||
super(s);
|
||||
}
|
||||
private <warning descr="Private constructor 'a()' is never used">a</warning>(){}
|
||||
}
|
||||
|
||||
class TheOnlyCtr extends Exception {
|
||||
private TheOnlyCtr(String s) {
|
||||
super(s);
|
||||
}
|
||||
}
|
||||
|
||||
class s extends Exception {
|
||||
|
||||
Reference in New Issue
Block a user