Merge branch '2.0.x'
This commit is contained in:
@@ -68,7 +68,7 @@ public class PropertiesMergingResourceTransformer implements ResourceTransformer
|
||||
|
||||
private void process(String name, String value) {
|
||||
String existing = this.data.getProperty(name);
|
||||
this.data.setProperty(name, (existing == null ? value : existing + "," + value));
|
||||
this.data.setProperty(name, (existing != null ? existing + "," + value : value));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user