Commit 620685f7 by Tuomas Riihimäki

Remove only logger reference in restpojo

1 parent 8b7d433d
...@@ -5,15 +5,11 @@ import java.util.List; ...@@ -5,15 +5,11 @@ import java.util.List;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@XmlRootElement @XmlRootElement
public class PlacemapMapRootPojo { public class PlacemapMapRootPojo {
private MapPojo map; private MapPojo map;
private List<ProductRestPojo> products; private List<ProductRestPojo> products;
private static final Logger logger = LoggerFactory.getLogger(PlacemapMapRootPojo.class);
public PlacemapMapRootPojo() { public PlacemapMapRootPojo() {
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!