getSVNEnvironment().getRevisionProperties() != null &&
!getSVNEnvironment().getRevisionProperties().isEmpty()) {
SVNProperties revPropNames = getSVNEnvironment().getRevisionProperties();
revProps = new String[revPropNames.size()];
int i = 0;
for (Iterator propNames = revPropNames.nameSet().iterator(); propNames.hasNext();) {
String propName = (String) propNames.next();
String propVal = revPropNames.getStringValue(propName);
if (propVal.length() > 0) {
SVNErrorMessage err = SVNErrorMessage.create(SVNErrorCode.CL_ARG_PARSING_ERROR,
"cannot assign with 'with-revprop' option (drop the '=')");