mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-highlighting] IDEA-246748 Remove support of C-style array declaration in record components
Actually suggest a fix if somebody uses it GitOrigin-RevId: 57ee72ebdc99ebe506a88696bf37f9319cdbcc33
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ea09257801
commit
a0f0dabaa4
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int[][] a){}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int[][][] a){}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int[] a){}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int a[<caret>][]){}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int[] a[<caret>][]){}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Replace with Java-style array declaration" "true"
|
||||
record X (int a[<caret>]){}
|
||||
Reference in New Issue
Block a user