mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-27 15:25:27 +07:00
91f7445298
GitOrigin-RevId: e836468e05db28157713e9edd3c70382f8ecdebc
11 lines
312 B
Java
11 lines
312 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 String getFileName(Path path, boolean something) { return path.toString(); }
|
|
private void foo(String text, int count) {}
|
|
}
|