MCPcopy
hub / github.com/arduino/Arduino / loadStrings

Method loadStrings

arduino-core/src/processing/app/legacy/PApplet.java:230–239  ·  view source on GitHub ↗
(File file)

Source from the content-addressed store, hash-verified

228 }
229
230 static public String[] loadStrings(File file) {
231 InputStream is = null;
232 try {
233 is = createInput(file);
234 if (is != null) return loadStrings(is);
235 return null;
236 } finally {
237 IOUtils.closeQuietly(is);
238 }
239 }
240
241 static public String[] loadStrings(InputStream input) {
242 BufferedReader reader = null;

Callers 3

loadFileMethod · 0.95
loadMethod · 0.95
readSettingsMethod · 0.95

Calls 2

createInputMethod · 0.95
printStackTraceMethod · 0.80

Tested by

no test coverage detected