From 96145171416f7bf31ebb22bd10b49cc6287d59e7 Mon Sep 17 00:00:00 2001 From: cramakri <cramakri> Date: Wed, 16 May 2012 14:23:46 +0000 Subject: [PATCH] SP-31 BIS-28 : Function that extracts properties from a file using a function should not clear the existing properties, it should just overwrite ones the function provides SVN: 25286 --- .../openbis/dss/generic/shared/api/v1/NewDataSetMetadataDTO.java | 1 - 1 file changed, 1 deletion(-) diff --git a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/api/v1/NewDataSetMetadataDTO.java b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/api/v1/NewDataSetMetadataDTO.java index 11716013e59..bdf5719e276 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/api/v1/NewDataSetMetadataDTO.java +++ b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/shared/api/v1/NewDataSetMetadataDTO.java @@ -100,7 +100,6 @@ public class NewDataSetMetadataDTO implements Serializable public void setProperties(Map<String, String> props) { - properties.clear(); if (props != null) { properties.putAll(props); -- GitLab