ActionPuntDAO.java: Fixed sonar issue 29/66929/1
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 17 Sep 2018 09:07:12 +0000 (14:37 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Mon, 17 Sep 2018 09:07:32 +0000 (14:37 +0530)
Link: https://sonar.onap.org/code?id=org.onap.aaf.authz%3Aparent&selected=org.onap.aaf.authz%3Aaaf-auth-batch%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Faaf%2Fauth%2Factions%2FActionPuntDAO.java
Issue-ID: AAF-498
Change-Id: Ic1358553b771af53abf25ab073d36ec0d1ab84f7
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
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);