More unit tests to pass 50%
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / model / Feed.java
index 9f7b3fc..648812f 100644 (file)
@@ -96,7 +96,6 @@ public class Feed extends DmaapObject {
                public Feed ( String json ) {
                        JSONParser parser = new JSONParser();
                        JSONObject jsonObj;
-                       
                        try {
                                jsonObj = (JSONObject) parser.parse( json );
                        } catch ( ParseException pe ) {
@@ -106,7 +105,6 @@ public class Feed extends DmaapObject {
                }
                        this.setFeedName( (String) jsonObj.get("name"));
 
-
                        this.setFeedVersion( (String) jsonObj.get("version"));
                        this.setFeedDescription( (String) jsonObj.get("description"));
                        this.setOwner( (String) jsonObj.get("publisher"));