Skip to content

Commit 692f6c6

Browse files
authored
Use WritablePropertyMap (#221)
1 parent 2fa9eef commit 692f6c6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

mcc/src/org/labkey/mcc/etl/ZimsImportTask.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import org.labkey.api.data.CompareType;
88
import org.labkey.api.data.Container;
99
import org.labkey.api.data.PropertyManager;
10+
import org.labkey.api.data.PropertyManager.WritablePropertyMap;
1011
import org.labkey.api.data.SimpleFilter;
1112
import org.labkey.api.data.TableInfo;
1213
import org.labkey.api.data.TableSelector;
@@ -231,7 +232,7 @@ private void insertDatasetRecords(PipelineJob job, List<Map<String, Object>> toI
231232

232233
public static void saveLastRun(Container container, Date jobStart)
233234
{
234-
PropertyManager.PropertyMap map = PropertyManager.getWritableProperties(container, PROP_CATEGORY, true);
235+
WritablePropertyMap map = PropertyManager.getWritableProperties(container, PROP_CATEGORY, true);
235236
if (jobStart != null)
236237
{
237238
map.put(lastRunTime, String.valueOf(jobStart.getTime()));

0 commit comments

Comments
 (0)