mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
223eeb0b0f
GitOrigin-RevId: f39f5c58348afb6b3c57dbc059860f940c6ec363
14 lines
188 B
Java
14 lines
188 B
Java
// "Wrap argument using 'new File()'" "true"
|
|
import java.io.File;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
readFile("my<caret>.txt");
|
|
}
|
|
|
|
static String readFile(File f) {
|
|
return null;
|
|
}
|
|
|
|
} |