From e4abbb6764cd2843383b21b7ec94bcd1489cc817 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 17 Jul 2019 23:18:01 +0200 Subject: [PATCH] Please cherry-pick: - added final modifier as the object reference shall never be changed MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../model/mailer/FinancialsMailerSingletonBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/mxchange/jfinancials/model/mailer/FinancialsMailerSingletonBean.java b/src/java/org/mxchange/jfinancials/model/mailer/FinancialsMailerSingletonBean.java index 50a2c3b..7bf7382 100644 --- a/src/java/org/mxchange/jfinancials/model/mailer/FinancialsMailerSingletonBean.java +++ b/src/java/org/mxchange/jfinancials/model/mailer/FinancialsMailerSingletonBean.java @@ -71,7 +71,7 @@ public class FinancialsMailerSingletonBean extends BaseMailerBean implements Del this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.init: CALLED!", this.getClass().getSimpleName())); //NOI18N // Try to load bundle - ResourceBundle bundle = ResourceBundle.getBundle(this.configFile); + final ResourceBundle bundle = ResourceBundle.getBundle(this.configFile); // Debug message this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.init: bundle={1}", this.getClass().getSimpleName(), bundle)); //NOI18N @@ -83,7 +83,7 @@ public class FinancialsMailerSingletonBean extends BaseMailerBean implements Del } // Init Properties - Properties properties = new Properties(); + final Properties properties = new Properties(); // Is the bundle not empty? if (!bundle.keySet().isEmpty()) { -- 2.39.5