Project

General

Profile

« Previous | Next » 

Revision 1960a5c2

Added by Andreas Müller over 2 years ago

fix toString in UpdateResult

View differences:

cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/UpdateResult.java
268 268
    private String toStringIdsString(String separator, Set<CdmEntityIdentifier> cdmIds) {
269 269
        String result = "";
270 270
        for (CdmEntityIdentifier id : cdmIds){
271
            result = CdmUtils.concat(separator, id.toString());
271
            result = CdmUtils.concat(separator, result, id.toString());
272 272
        }
273 273
        return result;
274 274
    }

Also available in: Unified diff