Retrofit ContentReference
with new ErrorReportConfiguration
by JooHyukKim · Pull Request #1070 · FasterXML/jackson-core (original) (raw)
wrt method name, I think we need method named maxRawContentLength()
to return _maxRawContentLength
, not maxContentSnippetLength
.
Since the method is protected
., we can think of two options do with its name.
- Direclty change name. Since it is "Internal" accessor as mentioned in JavaDoc, shouldn't be used outside class
protected int maxContentSnippetLength() { |
---|
protected int maxRawContentLength() { |
- Since method is
protected
, take two steps. Deprecate originalmaxContentSnippetLength()
and create newmaxRawContentLength()