Merge "ActionPuntDAO.java: Fixed sonar issue"
authorJonathan Gathman <jonathan.gathman@att.com>
Tue, 18 Sep 2018 11:44:39 +0000 (11:44 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 18 Sep 2018 11:44:39 +0000 (11:44 +0000)
auth/auth-batch/src/main/java/org/onap/aaf/auth/actions/ActionPuntDAO.java

index 707425c..ed032c9 100644 (file)
@@ -31,21 +31,17 @@ import org.onap.aaf.misc.env.APIException;
 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 @@ public abstract class ActionPuntDAO<D, RV, T> extends ActionDAO<D, RV, T> {
 
         /*
          *  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);