valerybokov commented on pull request #107:
URL: https://github.com/apache/pdfbox/pull/107#issuecomment-806748128
You check if an trimmed operator length bigger than zero. If condition is
true you call "Operator.getOperator(operator)" but use non trimmed value. May
be this version will be better:
default:
// we must be an operator
String operator = readOperator().trim();
if (operator.length() > 0)
{
return Operator.getOperator(operator);
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]