From: sharath reddy Date: Fri, 8 Apr 2022 07:15:27 +0000 (+0530) Subject: Removed useless curly braces around statement and useless return keyword X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=37efd3fe909604e58712784593758f4621af3846;p=cli.git 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 --- 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);