From: Switon Tomasz Date: Mon, 25 Jun 2018 12:35:38 +0000 (+0200) Subject: Fix sonar issues in /crud/util/CrudProperties.java X-Git-Tag: 1.3.0~15^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fgizmo.git;a=commitdiff_plain;h=07c45d4e49c334d11d91bfadbd7b68c437007b01 Fix sonar issues in /crud/util/CrudProperties.java Change-Id: Id98e68f70af525adc4894bfe92884a590e32b664 Issue-ID: AAI-1240 Signed-off-by: Switon Tomasz --- diff --git a/src/main/java/org/onap/crud/util/CrudProperties.java b/src/main/java/org/onap/crud/util/CrudProperties.java index 7d31691..118aed3 100644 --- a/src/main/java/org/onap/crud/util/CrudProperties.java +++ b/src/main/java/org/onap/crud/util/CrudProperties.java @@ -53,21 +53,11 @@ public class CrudProperties { public static void put(String key, String value) { properties.setProperty(key, value); - FileOutputStream fileOut = null; - try { - fileOut = new FileOutputStream(new File(CrudServiceConstants.CRD_CONFIG_FILE)); + try (FileOutputStream fileOut = new FileOutputStream(new File(CrudServiceConstants.CRD_CONFIG_FILE))) { properties.store(fileOut, "Added property: " + key); } catch (Exception e) { e.printStackTrace(); - } finally { - - try { - fileOut.close(); - } catch (IOException ex) { - ex.printStackTrace(); - } } - }