aboutsummaryrefslogtreecommitdiffstats
path: root/vnftools
diff options
context:
space:
mode:
authorramu.n <ramu.n@huawei.com>2017-09-08 14:45:31 +0530
committerramu.n <ramu.n@huawei.com>2017-09-08 18:24:03 +0530
commit27a9e0316840eda23701cffb9b9a8a44102ee439 (patch)
tree453e04202032fac30a1d19e7ad372c59a535f418 /vnftools
parent8d98e1e5488918f17fd31a7b8b375629ca7a06c1 (diff)
Fix few Blocker/Critical sonar issues
Fix few Blocker/Critical sonar issues in sdnc northbound modules https://sonar.onap.org/component_issues?id=org.openecomp.sdnc.northbound%3Asdnc-northbound#resolved=false|severities=BLOCKER%2CCRITICAL Change-Id: I277dd72784a2186acffdd2a7045fecbef528f56b Issue-Id: SDNC-65 Signed-off-by: Ramu N <ramu.n@huawei.com>
Diffstat (limited to 'vnftools')
-rw-r--r--vnftools/provider/src/main/java/org/onap/sdnc/vnftools/VnfTools.java19
1 files changed, 15 insertions, 4 deletions
diff --git a/vnftools/provider/src/main/java/org/onap/sdnc/vnftools/VnfTools.java b/vnftools/provider/src/main/java/org/onap/sdnc/vnftools/VnfTools.java
index b3497bd5..fb95a41f 100644
--- a/vnftools/provider/src/main/java/org/onap/sdnc/vnftools/VnfTools.java
+++ b/vnftools/provider/src/main/java/org/onap/sdnc/vnftools/VnfTools.java
@@ -8,9 +8,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,6 +23,7 @@ package org.onap.sdnc.vnftools;
import java.io.File;
import java.io.FileOutputStream;
+import java.io.IOException;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.List;
@@ -161,16 +162,26 @@ public class VnfTools implements SvcLogicJavaPlugin {
}
PrintStream pstr = null;
+ FileOutputStream fileStream = null;
try {
- pstr = new PrintStream(new FileOutputStream(new File(fileName), true));
+ pstr = new PrintStream(fileStream = new FileOutputStream(new File(fileName), true));
} catch (Exception e) {
+ if (fileStream != null) {
+ try {
+ fileStream.close();
+ } catch (IOException e1) {
+ LOG.error("FileOutputStream close exception: ", e1);
+ }
+ }
throw new SvcLogicException("Cannot open file " + fileName, e);
}
- pstr.println("#######################################");
+
+ pstr.println("#######################################");
for (String attr : ctx.getAttributeKeySet()) {
pstr.println(attr + " = " + ctx.getAttribute(attr));
}
+
pstr.flush();
pstr.close();
}