Skip to content
Snippets Groups Projects
Commit c7ddad29 authored by kaloyane's avatar kaloyane
Browse files

minor: Collection.emptyList() is not handled correctly by GWT serialization

SVN: 20185
parent 83925b7f
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
package ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto; package ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto;
import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
...@@ -41,7 +42,7 @@ public class WellContent implements ISerializable ...@@ -41,7 +42,7 @@ public class WellContent implements ISerializable
private EntityReference well; private EntityReference well;
private List<IEntityProperty> wellProperties = Collections.emptyList(); private List<IEntityProperty> wellProperties = new ArrayList<IEntityProperty>(0);
private EntityReference plate; private EntityReference plate;
......
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