Merge "ActionPuntDAO.java: Fixed sonar issue"
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/actions/ActionPuntDAO.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/actions/ActionPuntDAO.java
index 707425c..ed032c9 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/actions/ActionPuntDAO.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/actions/ActionPuntDAO.java
@@ -31,21 +31,17 @@
 import com.datastax.driver.core.Cluster;
 
 public abstract class ActionPuntDAO<D, RV, T> extends ActionDAO<D, RV, T> {
-//    private static final SecureRandom random = new SecureRandom();
     private int months;
-//    private int range;
     protected static final Date now = new Date();
 
     public ActionPuntDAO(AuthzTrans trans, Cluster cluster, int months, int range, boolean dryRun) throws APIException, IOException {
         super(trans, cluster,dryRun);
         this.months = months;
-//        this.range = range;
     }
 
     public ActionPuntDAO(AuthzTrans trans, ActionDAO<?, ?,?> predecessor, int months, int range) {
         super(trans, predecessor);
         this.months = months;
-//        this.range = range;
     }
     
 
@@ -56,7 +52,6 @@
 
         /*
          *  This method Randomized date.  This is no longer needed.  Just add the Punt Months.
-        temp.setTime(now);
         temp.add(GregorianCalendar.MONTH, months);
         if (range>0) {
             int forward = Math.abs(random.nextInt()%range);