mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
[java-inspections] SillyAssignment: warn of assigning array element to itself
IDEA-254504 GitOrigin-RevId: 64c608f339c5c417848d7e82b378acb1d0dd3ac2
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c904db5eb0
commit
54d96d4525
@@ -0,0 +1,5 @@
|
||||
class X {
|
||||
void a(int[] arr) {
|
||||
arr[arr.length - 1] = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user