mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-08 14:20:28 +07:00
10 lines
234 B
Java
10 lines
234 B
Java
class Main {
|
|
public void test() {
|
|
Path path = Paths.get("/tmp");
|
|
foo(getFileName(path), 5);<caret>
|
|
}
|
|
|
|
private String getFileName(Path path) { return path.toString(); }
|
|
private void foo(String text, int count) {}
|
|
}
|