[java-inspections] IDEA-298718 Simplify array/list/string creation and immediate access

GitOrigin-RevId: 60df8ffa9aee53abf897e4fa6b42da4909a0e40b
This commit is contained in:
Tagir Valeev
2022-07-27 14:38:39 +02:00
committed by intellij-monorepo-bot
parent 04d9657b40
commit f19b3cd370
13 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
// "Replace with ''l''" "true-preview"
class Test {
void test() {
char x = "Hello".<caret>charAt(2);
}
}