summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-10-14 21:00:46 +0000
committerGerrit Code Review <gerrit@onap.org>2019-10-14 21:00:46 +0000
commitbdce7667a6e272e2fa32e298d957a0d9090c5bc9 (patch)
treec8ef26c7b597ebee6fe32557a062e0ee83e684e5 /auth
parentaa47022612e86ae33af38409d942725ed28ff5ba (diff)
parent97fafba4b6819329c164b47df555914414b672b3 (diff)
Merge "Extend.java-Extract the assignment out of the expression"
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java
index 0077e9fc..c65130cf 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java
@@ -190,7 +190,8 @@ public class Extend extends Batch {
if(i%maxBatch==0 && sb!=null) {
cqlBatch.execute(dryRun);
hi.set(1);
- hsb.set(sb=null);
+ sb=null;
+ hsb.set(sb);
}
}
});