CharArrayBuffer.substring(int beginIndex, int endIndex) checks indexes
unnecessarily
------------------------------------------------------------------------------------
Key: HTTPCORE-213
URL: https://issues.apache.org/jira/browse/HTTPCORE-213
Project: HttpComponents HttpCore
Issue Type: Sub-task
Reporter: Sebb
Priority: Minor
CharArrayBuffer.substring(int beginIndex, int endIndex) checks indexes before
invoking the String constructor, which also checks the indexes.
String throws StringIndexOutOfBoundsException which is a subclass of
IndexOutOfBoundsException.
Code that catches IOOBE would also catch SIOOBE.
If it was desired to maintain exact compatibilty then the exception could be
caught and transformed.
But in any case the checks could be removed.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]