Skip to content
Snippets Groups Projects
Commit f3440b53 authored by brinn's avatar brinn
Browse files

fix: infinite recursion (leading to an StackOverflowException) when exporting...

fix: infinite recursion (leading to an StackOverflowException) when exporting data sets with data set properties
(merged from Sprint branch S64.x, r12670)

SVN: 12671
parent a97e2f9a
No related branches found
No related tags found
No related merge requests found
...@@ -60,10 +60,11 @@ public class DataSetTypePropertyTypeTranslator ...@@ -60,10 +60,11 @@ public class DataSetTypePropertyTypeTranslator
} }
public static List<DataSetTypePropertyType> translate( public static List<DataSetTypePropertyType> translate(
Set<DataSetTypePropertyTypePE> DataSetTypePropertyTypes, PropertyType result) Set<DataSetTypePropertyTypePE> DataSetTypePropertyTypes, PropertyType result,
Map<PropertyTypePE, PropertyType> cacheOrNull)
{ {
return new DataSetTypePropertyTypeTranslatorHelper().translate(DataSetTypePropertyTypes, return new DataSetTypePropertyTypeTranslatorHelper().translate(DataSetTypePropertyTypes,
result, null); result, cacheOrNull);
} }
public static DataSetTypePropertyType translate(DataSetTypePropertyTypePE entityTypePropertyType) public static DataSetTypePropertyType translate(DataSetTypePropertyTypePE entityTypePropertyType)
......
...@@ -83,7 +83,7 @@ public final class PropertyTypeTranslator ...@@ -83,7 +83,7 @@ public final class PropertyTypeTranslator
result.setExperimentTypePropertyTypes(ExperimentTypePropertyTypeTranslator.translate( result.setExperimentTypePropertyTypes(ExperimentTypePropertyTypeTranslator.translate(
propertyType.getExperimentTypePropertyTypes(), result)); propertyType.getExperimentTypePropertyTypes(), result));
result.setDataSetTypePropertyTypes(DataSetTypePropertyTypeTranslator.translate(propertyType result.setDataSetTypePropertyTypes(DataSetTypePropertyTypeTranslator.translate(propertyType
.getDataSetTypePropertyTypes(), result)); .getDataSetTypePropertyTypes(), result, cacheOrNull));
return result; return result;
} }
......
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