MCPcopy Create free account
hub / github.com/Youlor/unpacker / argString

Method argString

dexfixer/src/com/android/dx/dex/code/SwitchData.java:162–175  ·  view source on GitHub ↗

{@inheritDoc}

()

Source from the content-addressed store, hash-verified

160
161 /** {@inheritDoc} */
162 @Override
163 protected String argString() {
164 StringBuilder sb = new StringBuilder(100);
165
166 int sz = targets.length;
167 for (int i = 0; i < sz; i++) {
168 sb.append("\n ");
169 sb.append(cases.get(i));
170 sb.append(": ");
171 sb.append(targets[i]);
172 }
173
174 return sb.toString();
175 }
176
177 /** {@inheritDoc} */
178 @Override

Callers

nothing calls this directly

Calls 3

appendMethod · 0.80
getMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected