Skip to content

Commit 69a3752

Browse files
committed
Merge pull request #129 from pgelinas/2.3
Add missing delegation method. Fix FasterXML/jackson-dataformat-xml#97.
2 parents 3577a42 + a4f846e commit 69a3752

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ public JsonLocation getCurrentLocation() {
156156
public JsonStreamContext getParsingContext() {
157157
return delegate.getParsingContext();
158158
}
159+
160+
@Override public boolean isExpectedStartArrayToken() { return delegate.isExpectedStartArrayToken(); }
159161

160162
/*
161163
/**********************************************************

0 commit comments

Comments
 (0)