diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-10-14 21:00:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-14 21:00:46 +0000 |
commit | bdce7667a6e272e2fa32e298d957a0d9090c5bc9 (patch) | |
tree | c8ef26c7b597ebee6fe32557a062e0ee83e684e5 /auth/auth-batch/src/main | |
parent | aa47022612e86ae33af38409d942725ed28ff5ba (diff) | |
parent | 97fafba4b6819329c164b47df555914414b672b3 (diff) |
Merge "Extend.java-Extract the assignment out of the expression"
Diffstat (limited to 'auth/auth-batch/src/main')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/update/Extend.java | 3 |
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); } } }); |