[java-inspections] IDEA-341640 Mark main(String[] args) parameter as unused with implicit classes

GitOrigin-RevId: 08ca1f5ed4f48439b394f7fd313f2b95d50c48e7
This commit is contained in:
Mikhail Pyltsin
2024-01-03 13:16:41 +01:00
committed by intellij-monorepo-bot
parent 90a55b57c9
commit 0df89a1b62
7 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
// "Safe delete 'args'" "false"
public class Main{
public static void main(String[] ar<caret>gs) {
}
}

View File

@@ -0,0 +1,6 @@
// "Safe delete 'args'" "true-preview"
public class Main{
public static void main() {
}
}

View File

@@ -0,0 +1,5 @@
// "Safe delete 'args'" "true-preview"
public static void main() {
}

View File

@@ -0,0 +1,6 @@
// "Safe delete 'args'" "true-preview"
public class Main{
public static void main(String[] arg<caret>s) {
}
}

View File

@@ -0,0 +1,5 @@
// "Safe delete 'args'" "true-preview"
public static void main(String[] arg<caret>s) {
}