if ((finalWidth + spaceWidth + wordWidth)
> this.getContentWidth()) {
if (overrun)
- MessageHandler.error(">");
+ MessageHandler.log("area contents overflows area");
if (this.wrapOption == WrapOption.WRAP) {
return i;
}
(wordStart == start) &&
(finalWidth == 0)) {
- MessageHandler.error(">");
+ MessageHandler.log("area contents overflows area");
addSpacedWord(new String(data, wordStart, wordLength - 1),
ls,
finalWidth + spaceWidth
}
if (overrun)
- MessageHandler.error(">");
+ MessageHandler.log("area contents overflows area");
return -1;
}