mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
150 B
Java
10 lines
150 B
Java
// "Adapt argument using 'Path.of()'" "true-preview"
|
|
import java.nio.file.*;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
Files.readString(Path.of("path"));
|
|
}
|
|
|
|
} |