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

Method writeln

core/src/processing/data/Table.java:4250–4256  ·  view source on GitHub ↗
(PrintWriter writer)

Source from the content-addressed store, hash-verified

4248 }
4249
4250 private void writeln(PrintWriter writer) throws IOException {
4251 for (String str : indexToData) {
4252 writer.println(str);
4253 }
4254 writer.flush();
4255 writer.close();
4256 }
4257
4258 void read(DataInputStream input) throws IOException {
4259 int count = input.readInt();

Callers 1

convertBasicMethod · 0.80

Calls 3

printlnMethod · 0.45
flushMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected