From 37efd3fe909604e58712784593758f4621af3846 Mon Sep 17 00:00:00 2001 From: sharath reddy Date: Fri, 8 Apr 2022 12:45:27 +0530 Subject: Removed useless curly braces around statement and useless return keyword Issue-ID: CLI-442 report: tested weather-report, execution-list Signed-off-by: sharath reddy Change-Id: Iad499395c2465893a766dc9e9e5315c48e0315ee --- .../main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java index a1c84a41..b68474db 100644 --- a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java +++ b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java @@ -471,9 +471,7 @@ public class OnapCommandExecutionStore { } private File getExecutionDir(String executionId) throws OnapCommandExecutionNotFound { - File []f = new File(getBasePath()).listFiles((dir, name) -> { - return name.startsWith(executionId); - }); + File []f = new File(getBasePath()).listFiles((dir, name) -> name.startsWith(executionId)); if (f.length == 0) { throw new OnapCommandExecutionNotFound(executionId); -- cgit 1.2.3-korg