buildframework/helium/sf/java/sbs/src/com/nokia/helium/sbs/ant/types/SBSBuild.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/sbs/src/com/nokia/helium/sbs/ant/types/SBSBuild.java	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/sbs/src/com/nokia/helium/sbs/ant/types/SBSBuild.java	Fri Aug 13 14:59:05 2010 +0300
@@ -17,13 +17,13 @@
  
 package com.nokia.helium.sbs.ant.types;
 
-import org.apache.tools.ant.types.DataType;
-import org.apache.tools.ant.BuildException;
-import java.util.Vector;
+import java.util.ArrayList;
 import java.util.List;
-import java.util.ArrayList;
+import java.util.Vector;
+
+import org.apache.tools.ant.BuildException;
+import org.apache.tools.ant.types.DataType;
 import org.apache.tools.ant.types.Reference;
-import org.apache.log4j.Logger;
 
 
 /**
@@ -49,15 +49,9 @@
  */
 public class SBSBuild extends DataType
 {
-    private static Logger log = Logger.getLogger(SBSBuild.class);
-
     private String name;
 
     private Vector<SBSInput> sbsInputList = new Vector<SBSInput>();
-
-
-    public SBSBuild() {
-    }
     
     /**
      * Set the name of the variable.
@@ -99,7 +93,6 @@
             try {
                 sbsInputObject = refId.getReferencedObject();
             } catch ( BuildException ex) {
-                //log.info("Reference id of sbsinput list is not valid");
                 throw new BuildException("Reference id (" + refId.getRefId() + ") of sbsinput list is not valid");
             }
             if (sbsInputObject != null && sbsInputObject instanceof SBSInput) {