mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
[java-inspections] IDEA-341640 Mark main(String[] args) parameter as unused with implicit classes
GitOrigin-RevId: 08ca1f5ed4f48439b394f7fd313f2b95d50c48e7
This commit is contained in:
committed by
intellij-monorepo-bot
parent
90a55b57c9
commit
0df89a1b62
@@ -0,0 +1,6 @@
|
||||
// "Safe delete 'args'" "false"
|
||||
|
||||
public class Main{
|
||||
public static void main(String[] ar<caret>gs) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Safe delete 'args'" "true-preview"
|
||||
|
||||
public class Main{
|
||||
public static void main() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Safe delete 'args'" "true-preview"
|
||||
|
||||
public static void main() {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Safe delete 'args'" "true-preview"
|
||||
|
||||
public class Main{
|
||||
public static void main(String[] arg<caret>s) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Safe delete 'args'" "true-preview"
|
||||
|
||||
public static void main(String[] arg<caret>s) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user