Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/afterPreserveComment.java
Anna Kozlova 356697425a create local from usage: preserve comments
found by property testing

GitOrigin-RevId: 2b4aabe7f5cc3e87d8cbbb9959f778aa241fa377
2020-03-19 09:32:07 +00:00

10 lines
174 B
Java

// "Create local variable 'zeit'" "true"
public class A {
void foo() {
String[] split = null;
//c1
String zeit = split[1]; // 2011-04-13
}
}