MCPcopy Create free account
hub / github.com/ReadyTalk/avian / File

Method File

classpath/java/io/File.java:34–37  ·  view source on GitHub ↗
(String path)

Source from the content-addressed store, hash-verified

32 private final String path;
33
34 public File(String path) {
35 if (path == null) throw new NullPointerException();
36 this.path = normalize(path);
37 }
38
39 public File(String parent, String child) {
40 this(parent + FileSeparator + child);

Callers

nothing calls this directly

Calls 2

normalizeMethod · 0.95
getPathMethod · 0.45

Tested by

no test coverage detected