From: sharath reddy Date: Thu, 31 Mar 2022 16:28:21 +0000 (+0530) Subject: Removed the deprecated usage of writeStringToFile X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=47f1355a137634d9794706e95d317f80d37c8fcf;p=cli.git Removed the deprecated usage of writeStringToFile Issue-ID: CLI-439 report: tested weather-report Signed-off-by: sharath reddy Change-Id: Ia102738354bd1ddc46a0d1397a9a9431ed162f96 --- diff --git a/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java b/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java index 632142af..3bbdcf6f 100644 --- a/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java +++ b/profiles/command/src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java @@ -20,6 +20,7 @@ import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; +import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -328,7 +329,7 @@ public class OpenCommandShellCmd extends OnapCommand { try { FileUtils.touch(new File(tmpFilePath)); FileUtils.writeStringToFile(new File(tmpFilePath), - this.getParametersMap().get(paramName).getValue().toString()); + this.getParametersMap().get(paramName).getValue().toString(), (Charset) null); } catch (IOException e) { // NO SONAR }