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 ac956fe commit cce8295Copy full SHA for cce8295
src/main/java/com/fasterxml/jackson/core/util/JsonParserDelegate.java
@@ -90,6 +90,7 @@ public JsonParser setFeatureMask(int mask) {
90
@Override public String getCurrentName() throws IOException, JsonParseException { return delegate.getCurrentName(); }
91
@Override public JsonLocation getCurrentLocation() { return delegate.getCurrentLocation(); }
92
@Override public JsonStreamContext getParsingContext() { return delegate.getParsingContext(); }
93
+ @Override public boolean isExpectedStartArrayToken() { return delegate.isExpectedStartArrayToken(); }
94
95
/*
96
/**********************************************************
0 commit comments