prevent NPE

This commit is contained in:
Athou
2013-10-20 17:12:53 +02:00
parent 38f8102fb3
commit 6aca66d8cf

View File

@@ -20,6 +20,8 @@ import lombok.Setter;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import com.google.common.collect.Lists;
@Entity
@Table(name = "FEEDENTRYSTATUSES")
@SuppressWarnings("serial")
@@ -45,7 +47,7 @@ public class FeedEntryStatus extends AbstractModel {
private boolean markable;
@Transient
private List<FeedEntryTag> tags;
private List<FeedEntryTag> tags = Lists.newArrayList();
/**
* Denormalization starts here