IBM-Cloud / gp-java-tools

CLI Tools for Globalization Pipeline
https://developer.ibm.com/open/ibm-bluemix-globalization-pipeline-service/node-js-sdk/
Apache License 2.0
9 stars 19 forks source link

Java properties file import filter fails to handle extra spaces before k/v separator #131

Closed yumaoka closed 5 years ago

yumaoka commented 5 years ago

Java properties resource filter implements 3 different property key/value separators - =, : and white space. However, when key string followed by 2 or more white spaces before = or :, then the character is treated as the first character of property value.

For example, a property line key1 = val1 is currently interpreted as key key1, value = val1. It should be interpreted as key key1, value val1.