mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-26 08:21:26 +07:00
10 lines
146 B
Java
10 lines
146 B
Java
// "Wrap parameter using 'Paths.get()'" "true"
|
|
import java.nio.file.*;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
Files.readString(Paths.get("path"));
|
|
}
|
|
|
|
} |