Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 8.0-M0
-
Component/s: property plugin
-
Labels:None
Description
Reading from the following .properties file fails:
_=description:String,name:String GenericEntity.f004=description-f004|name-f004 GenericEntity.f007=description-f007|
The second feature has an empty name, but the parser fails. Solution is to replace
text = line.substring(split + 1).split("\\|");
by
text = line.substring(split + 1).split("\\|", -1);
at PropertyAttributeReader.
Issue Links
- relates to
-
GEOT-3546
PropertyAttributeReader fails to translate empty value to null
-
Cheers,
Gabriel