mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-09 09:30:26 +07:00
39d2d77155
GitOrigin-RevId: b8e892f32ea84c2115973155dba7127b892cc36e
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) {}
|
|
}
|