Removed useless curly braces around statement and useless return keyword 83/128383/1
authorsharath reddy <bs.reddy@huawei.com>
Fri, 8 Apr 2022 07:15:27 +0000 (12:45 +0530)
committersharath reddy <bs.reddy@huawei.com>
Fri, 8 Apr 2022 07:16:45 +0000 (12:46 +0530)
Issue-ID: CLI-442

report: tested weather-report, execution-list

Signed-off-by: sharath reddy <bs.reddy@huawei.com>
Change-Id: Iad499395c2465893a766dc9e9e5315c48e0315ee

framework/src/main/java/org/onap/cli/fw/store/OnapCommandExecutionStore.java

index a1c84a4..b68474d 100644 (file)
@@ -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);