mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-27 04:08:01 +07:00
286820138e
GitOrigin-RevId: a3c3b43e9421375c6cd4e8d1980d7a13ea392167
10 lines
142 B
Java
10 lines
142 B
Java
// "Wrap parameter using 'Path.of()'" "true"
|
|
import java.nio.file.*;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
Files.readString(Path.of("path"));
|
|
}
|
|
|
|
} |