Merge branch 'master' of oss:/var/local/git/avian

This commit is contained in:
Joel Dice
2008-03-05 14:22:04 -07:00

View File

@ -118,7 +118,7 @@ public class StringBuilder {
}
public StringBuilder insert(int i, String s) {
if (i < 0 || i >= length) {
if (i < 0 || i > length) {
throw new IndexOutOfBoundsException();
}