code cleanup

This commit is contained in:
Athou
2014-08-14 11:40:30 +02:00
parent cda6cb5cc0
commit 1324269f1d
7 changed files with 16 additions and 53 deletions

View File

@@ -1,25 +0,0 @@
package com.commafeed.frontend.model;
import java.io.Serializable;
import java.util.List;
import lombok.Data;
import com.commafeed.backend.model.Feed;
import com.google.common.collect.Lists;
import com.wordnik.swagger.annotations.ApiModel;
@ApiModel("Feed count")
@Data
public class FeedCount implements Serializable {
private static final long serialVersionUID = 1L;
private String value;
private List<Feed> feeds = Lists.newArrayList();;
public FeedCount(String value) {
this.value = value;
}
}