Skip to content

Commit cce8295

Browse files
author
Pascal Gélinas
committed
Add missing delegation method. Fix FasterXML/jackson-dataformat-xml#97.
1 parent ac956fe commit cce8295

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/fasterxml/jackson/core/util/JsonParserDelegate.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public JsonParser setFeatureMask(int mask) {
9090
@Override public String getCurrentName() throws IOException, JsonParseException { return delegate.getCurrentName(); }
9191
@Override public JsonLocation getCurrentLocation() { return delegate.getCurrentLocation(); }
9292
@Override public JsonStreamContext getParsingContext() { return delegate.getParsingContext(); }
93+
@Override public boolean isExpectedStartArrayToken() { return delegate.isExpectedStartArrayToken(); }
9394

9495
/*
9596
/**********************************************************

0 commit comments

Comments
 (0)