(String[] arr, int required)
| 221 | } |
| 222 | |
| 223 | private final String[] ensureCapacity(String[] arr, int required) { |
| 224 | if (arr.length >= required) |
| 225 | return arr; |
| 226 | String[] bigger = new String[required + 16]; |
| 227 | System.arraycopy(arr, 0, bigger, 0, arr.length); |
| 228 | return bigger; |
| 229 | } |
| 230 | |
| 231 | private final void error(String desc) throws XmlPullParserException { |
| 232 | if (relaxed) { |
no outgoing calls
no test coverage detected