|
Relates :
|
The following methods may throw IndexOutOfBoundsException, but don't have an appropriate assertion in Javadocs:
java.lang.StringBuffer.codePointAt(int)
java.lang.StringBuffer.codePointBefore(int)
java.lang.StringBuffer.codePointCount(int,int)
They should have assertions like these methods:
java.lang.StringBuilder.codePointAt(int)
java.lang.StringBuilder.codePointBefore(int)
java.lang.StringBuilder.codePointCount(int,int)
|