Skip to content
Snippets Groups Projects
Commit 15afd450 authored by felmer's avatar felmer
Browse files

bug fixed. Bug showed up in integration test

SVN: 9965
parent 9d91502b
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
package ch.systemsx.cisd.openbis.generic.shared.dto;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
......@@ -46,7 +47,8 @@ public final class MaterialTypePE extends EntityTypePE
{
private static final long serialVersionUID = GenericSharedConstants.VERSION;
private Set<MaterialTypePropertyTypePE> materialTypePropertyTypes;
private Set<MaterialTypePropertyTypePE> materialTypePropertyTypes =
new HashSet<MaterialTypePropertyTypePE>();
//
// EntityTypePE
......
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