From 47f1355a137634d9794706e95d317f80d37c8fcf Mon Sep 17 00:00:00 2001
From: sharath reddy <bs.reddy@huawei.com>
Date: Thu, 31 Mar 2022 21:58:21 +0530
Subject: Removed the deprecated usage of writeStringToFile

Issue-ID: CLI-439

report: tested weather-report

Signed-off-by: sharath reddy <bs.reddy@huawei.com>
Change-Id: Ia102738354bd1ddc46a0d1397a9a9431ed162f96
---
 .../src/main/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmd.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'profiles')

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
                 }
-- 
cgit