mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-28 15:32:50 +07:00
9215f4240b
GitOrigin-RevId: 1545b79fdca4888f4b94f47f22703fd37694fa7a
10 lines
225 B
Java
10 lines
225 B
Java
class Main {
|
|
public void test() {
|
|
Path path = Paths.get("/tmp");
|
|
foo(getf<caret>path, 5);
|
|
}
|
|
|
|
private String getFileName(Path path) { return path.toString(); }
|
|
private void foo(String text, int count) {}
|
|
}
|