mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
suppress for parameter: make it possible to suppress one parameter (IDEA-69021)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "Suppress for parameter" "true"
|
||||
public class Test {
|
||||
private void run(@SuppressWarnings("UnusedParameters") String s<caret>ss) {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new Test().run(null);
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Suppress for parameter" "true"
|
||||
public class Test {
|
||||
private void run(String s<caret>ss) {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new Test().run(null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user