bool getLineLimit(int lineLength) { if (lineMaxLength == 0) { return true; } if (lineLength >= lineMaxLength) { return false; } else { return true; } }