mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
15 lines
348 B
Java
15 lines
348 B
Java
// "Fix all 'Stream API call chain can be replaced with loop' problems in file" "true"
|
|
|
|
import java.io.File;
|
|
import java.util.Arrays;
|
|
|
|
class X {
|
|
|
|
void x(File[] files) {
|
|
for (File s : files) {
|
|
File dest = new File(s.getAbsolutePath());
|
|
System.out.println("unable to rename " + s + " to " + dest); //comment
|
|
}
|
|
}
|
|
|
|
} |