We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b1b66 commit 1736a60Copy full SHA for 1736a60
XMLTokener.java
@@ -298,6 +298,9 @@ public Object nextToken() throws JSONException {
298
* If it is not found, we are left at the end of the source with a result of false.
299
* @param to A string to skip past.
300
*/
301
+ // The Android implementation of JSONTokener has a public method of public void skipPast(String to)
302
+ // even though ours does not have that method, to have API compatibility, our method in the subclass
303
+ // should match.
304
public void skipPast(String to) {
305
boolean b;
306
char c;
0 commit comments