From: sharath reddy Date: Fri, 1 Apr 2022 07:54:34 +0000 (+0530) Subject: removed block of commented-out lines of code X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=25a406a2402c70b3608ea440c621dd793f6c6e1d;p=cli.git removed block of commented-out lines of code Issue-ID: CLI-439 report: tested weather-report Signed-off-by: sharath reddy Change-Id: I2e15d26c85909fa46df248c7ff9ac38fc7c34c70 --- diff --git a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java index ca4c6038..3b6e7853 100644 --- a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java +++ b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java @@ -233,12 +233,7 @@ public class OnapCommandArtifactStore { final String SP = searchPattern; //NOSONAR - for (File file: new File(getBasePath()).listFiles(/*new FilenameFilter() { - @Override - public boolean accept(File dir, String name) { - return name.matches(SP); - } - }*/)) { + for (File file: new File(getBasePath()).listFiles()) { try (JsonReader jsonReader = new JsonReader(new FileReader(file))){ artifacts.add(gson.fromJson(jsonReader, Artifact.class)); } catch (Exception e) { // NOSONAR