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

Method argString

dexfixer/src/com/android/dx/dex/code/ArrayData.java:167–180  ·  view source on GitHub ↗

{@inheritDoc}

()

Source from the content-addressed store, hash-verified

165
166 /** {@inheritDoc} */
167 @Override
168 protected String argString() {
169 StringBuilder sb = new StringBuilder(100);
170
171 int sz = values.size();
172 for (int i = 0; i < sz; i++) {
173 sb.append("\n ");
174 sb.append(i);
175 sb.append(": ");
176 sb.append(values.get(i).toHuman());
177 }
178
179 return sb.toString();
180 }
181
182 /** {@inheritDoc} */
183 @Override

Callers

nothing calls this directly

Calls 5

appendMethod · 0.80
sizeMethod · 0.65
toHumanMethod · 0.65
getMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected