MCPcopy Index your code
hub / github.com/processing/processing / createReader

Method createReader

core/methods/src/PAppletMethods.java:274–277  ·  view source on GitHub ↗
(File file)

Source from the content-addressed store, hash-verified

272
273
274 static BufferedReader createReader(File file) throws IOException {
275 FileInputStream fis = new FileInputStream(file);
276 return new BufferedReader(new InputStreamReader(fis, "UTF-8"));
277 }
278}

Callers 2

executeMethod · 0.95
processMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected