mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
[java-inspections] CodeBlockSurrounder and StatementExtractor: support templates
GitOrigin-RevId: 3a998d7117ef6e94a7727a3f37d110905cc0c1bf
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7241647518
commit
0d63633751
@@ -140,8 +140,8 @@ public class Main {
|
||||
private static List<String> testMethodRef2(List<String[]> list) {
|
||||
List<String> result = new ArrayList<>();
|
||||
for (String[] strings : list) {
|
||||
for (String t : strings) {
|
||||
result.add(t);
|
||||
for (String value : strings) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user