From 24f0c09130163b6f4c0870f2a4127047615bd69e Mon Sep 17 00:00:00 2001 From: Thugutla sailakshmi Date: Sun, 11 Aug 2019 19:28:58 +0530 Subject: [PATCH] AAF-892-remove unsed variables from ApprovedRpt.java file remove unsed variables from ApprovedRpt.java file Issue-ID: AAF-892 Change-Id: I6136616d5332644d7eae55197ee8357e5314683f Signed-off-by: Thugutla sailakshmi --- .../java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java index b2fd8a9a..880173b9 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/ApprovedRpt.java @@ -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 checked = new TreeMap(); - - 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)) { -- 2.16.6