Commit b5f92611 authored by Johnny Lim's avatar Johnny Lim Committed by Andy Wilkinson

Use the passed parameter in BuildInfo.coerceToStringValues()

Closes gh-5652
parent abe8c2ec
......@@ -128,7 +128,7 @@ public class BuildInfo extends DefaultTask {
private Map<String, String> coerceToStringValues(Map<String, Object> input) {
Map<String, String> output = new HashMap<String, String>();
for (Entry<String, Object> entry : this.additionalProperties.entrySet()) {
for (Entry<String, Object> entry : input.entrySet()) {
output.put(entry.getKey(), entry.getValue().toString());
}
return output;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment