More unit tests to pass 50%
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / model / MR_Cluster.java
index 46279ee..79de9ba 100644 (file)
@@ -20,8 +20,6 @@
 
 package org.onap.dmaap.dbcapi.model;
 
-import java.util.Date;
-
 import javax.xml.bind.annotation.XmlRootElement;
 
 import org.onap.dmaap.dbcapi.util.DmaapTimestamp;
@@ -63,22 +61,16 @@ public class MR_Cluster extends DmaapObject {
                                                String[] h ) {
                this.dcaeLocationName = dLN;
                this.fqdn = f;
-logger.info( "templog:MR_Cluster at 10" );
                this.hosts = new String[3];
                this.hosts[0] = h[0];
-logger.info( "templog:MR_Cluster at 20" );
                this.hosts[1] = h[1];
-logger.info( "templog:MR_Cluster at 30" );
                this.hosts[2] = h[2];
-logger.info( "templog:MR_Cluster at 40" );
                this.topicProtocol = defaultTopicProtocol;
-logger.info( "templog:MR_Cluster at 50" );
                this.topicPort = defaultTopicPort;
                this.lastMod = new DmaapTimestamp();
                this.lastMod.mark();
 
                debugLogger.debug( "MR_Cluster constructor w initialization complete" + this.lastMod.getVal() );
-logger.info( "templog:MR_Cluster at 60" );
        }
 
        public String getDcaeLocationName() {