Change SimpleString to comma for multiple parts

This commit is contained in:
Northmoc
2021-09-09 19:15:25 -04:00
parent a5aa29f65e
commit db988abb4f

View File

@@ -684,7 +684,7 @@ public class Cost implements Serializable {
boolean first = true;
for (final CostPart part : this.costParts) {
if (!first) {
cost.append(" and ");
cost.append(", ");
}
cost.append(part.toString());
first = false;