AAF-892-remove unsed variables from ApprovedRpt.java file 69/93269/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 11 Aug 2019 13:58:58 +0000 (19:28 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 11 Aug 2019 13:59:40 +0000 (19:29 +0530)
remove unsed variables from ApprovedRpt.java file

Issue-ID: AAF-892
Change-Id: I6136616d5332644d7eae55197ee8357e5314683f
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java

index b2fd8a9..880173b 100644 (file)
@@ -3,6 +3,7 @@
  * org.onap.aaf
  * ===========================================================================
  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2018 IBM.
  * ===========================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -51,7 +52,6 @@ public class ApprovedRpt extends Batch {
     
     private static final String APPR_RPT = "ApprovedRpt";
     private static final String CSV = ".csv";
-    private static final String INFO = "info";
     private Date now;
     private Writer approvedW;
     private CSV historyR;
@@ -86,10 +86,7 @@ public class ApprovedRpt extends Batch {
 
     @Override
     protected void run(AuthzTrans trans) {
-        try {
-            Map<String,Boolean> checked = new TreeMap<String, Boolean>();
-            
-            final AuthzTrans transNoAvg = trans.env().newTransNoAvg();
+        try {          
 //            ResultSet results;
 //            Statement stmt = new SimpleStatement( "select dateof(id), approver, status, user, type, memo from authz.approved;" );
 //            results = session.execute(stmt);
@@ -111,15 +108,10 @@ public class ApprovedRpt extends Batch {
                     );
                 }
             }
-
              */
-            int totalLoaded = 0;
-            Date d;
             GregorianCalendar gc = new GregorianCalendar();
             gc.add(GregorianCalendar.MONTH, -2);
-            Date begin = gc.getTime();
             approvedW.comment("date, approver, status, user, role, memo");
-            
             historyR.visit(row -> {
                 String s = row.get(7);
                 if(s.equals(yr_mon)) {