Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
4.3.6
Description
RequestConfig's toString() method begins its String with a ",":
final StringBuilder builder = new StringBuilder();
builder.append(", expectContinueEnabled=").append(expectContinueEnabled);
and ends with an unbalanced "]". I see no indication this is intended.
Proposed fix: change second line above to:
builder.append("RequestConfig: expectContinueEnabled=").append(expectContinueEnabled);