Skip to content
Snippets Groups Projects
Commit cd151ba1 authored by jakubs's avatar jakubs
Browse files

SSDM-1485: fix a problem where linked data sets couldn't have been updated in a dropbox

SVN: 36254
parent 4a7aa3b4
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,9 @@ import ch.systemsx.cisd.openbis.dss.generic.shared.api.internal.v2.ISampleImmuta
import ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.DataSetType;
import ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.id.IObjectId;
import ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.id.dataset.DataSetCodeId;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.AbstractExternalData;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Code;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ContainerDataSet;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.AbstractExternalData;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Experiment;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ExternalDataManagementSystem;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.IEntityProperty;
......@@ -141,7 +141,7 @@ public class DataSetImmutable extends AbstractDataSetImmutable
@Override
public String getFileFormatType()
{
if (isContainerDataSet())
if (isContainerDataSet() || isLinkDataSet())
{
return null;
} else
......@@ -159,7 +159,7 @@ public class DataSetImmutable extends AbstractDataSetImmutable
@Override
public int getSpeedHint()
{
if (isContainerDataSet())
if (isContainerDataSet() || isLinkDataSet())
{
return Integer.MIN_VALUE;
} else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment