mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-23 15:01:27 +07:00
Part of IDEA-242022 WrapWithAdapterMethodCallFix.Wrapper improvement GitOrigin-RevId: 4e4bac1a4f3942589e45970a61478e71bf08482c
9 lines
183 B
Java
9 lines
183 B
Java
// "Wrap argument using 'toPath()'" "true"
|
|
import java.io.*;
|
|
import java.nio.file.*;
|
|
|
|
class Test {
|
|
void test(File file) throws IOException {
|
|
Files.createFile(<caret>file);
|
|
}
|
|
} |