diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-06-09 13:05:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-06-09 13:05:54 +0000 |
commit | 96f59e3fd14cdd81e58537b647aa3dd001e3c4cc (patch) | |
tree | 15c59cc65c2298aae40a892ff8f29771f7a82ce6 /cps-ncmp-rest/src/main | |
parent | 3d579b83363af5de0745aed9bcda9611305dffb5 (diff) | |
parent | 421f824800e51ddd4f70758f5be386e50bf8ea1e (diff) |
Merge "Fix sonar code smells"
Diffstat (limited to 'cps-ncmp-rest/src/main')
-rw-r--r-- | cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/executor/CpsNcmpTaskExecutor.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/executor/CpsNcmpTaskExecutor.java b/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/executor/CpsNcmpTaskExecutor.java index 93aa2858ca..5adbb252a0 100644 --- a/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/executor/CpsNcmpTaskExecutor.java +++ b/cps-ncmp-rest/src/main/java/org/onap/cps/ncmp/rest/executor/CpsNcmpTaskExecutor.java @@ -40,11 +40,7 @@ public class CpsNcmpTaskExecutor { public void executeTask(final Supplier<Object> taskSupplier, final int timeOutInMillis) { CompletableFuture.supplyAsync(taskSupplier::get) .orTimeout(timeOutInMillis, MILLISECONDS) - .whenCompleteAsync( - (responseAsJson, throwable) -> { - handleTaskCompletion(throwable); - } - ); + .whenCompleteAsync((responseAsJson, throwable) -> handleTaskCompletion(throwable)); } private void handleTaskCompletion(final Throwable throwable) { |