*/
static Utf8StreamParser newJsonParser(InputStream in, byte[] buf,
int offset, int limit, boolean bufferRecyclable, IOContext context)
throws IOException
{
return new Utf8StreamParser(context,
DEFAULT_JSON_FACTORY.getParserFeatures(), in,
DEFAULT_JSON_FACTORY.getCodec(),
DEFAULT_JSON_FACTORY.getRootByteSymbols().makeChild(true, true),
buf, offset, limit, bufferRecyclable);
}