MCPcopy Create free account
hub / github.com/cSploit/android / StderrNewline

Class StderrNewline

cSploit/src/org/csploit/android/events/StderrNewline.java:6–17  ·  view source on GitHub ↗

a line has been printed on child stderr

Source from the content-addressed store, hash-verified

4 * a line has been printed on child stderr
5 */
6public class StderrNewline implements Event {
7 public final String line;
8
9 public StderrNewline(String line) {
10 this.line = line;
11 }
12
13 @Override
14 public String toString() {
15 return "StderrNewline: { line='" + this.line + "' }";
16 }
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected