MCPcopy Create free account
hub / github.com/Aefyr/SAI / toString

Method toString

app/src/main/java/com/aefyr/sai/shell/Shell.java:38–51  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36 }
37
38 @NonNull
39 @Override
40 public String toString() {
41 StringBuilder sb = new StringBuilder();
42
43 for (int i = 0; i < mArgs.size(); i++) {
44 String arg = mArgs.get(i);
45 sb.append(arg);
46 if (i < mArgs.size() - 1)
47 sb.append(" ");
48 }
49
50 return sb.toString();
51 }
52
53 public static class Builder {
54 private Command mCommand;

Callers

nothing calls this directly

Calls 3

getMethod · 0.80
sizeMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected