From: Roland Häder Date: Wed, 17 Jul 2019 21:18:01 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4f18968d907d96cdbd5fa7201d881434de991107;p=pizzaservice-mailer-ejb.git Please cherry-pick: - added final modifier as the object reference shall never be changed Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/pizzaapplication/model/mailer/PizzaMailerSingletonBean.java b/src/java/org/mxchange/pizzaapplication/model/mailer/PizzaMailerSingletonBean.java index ca6a643..0d66e59 100644 --- a/src/java/org/mxchange/pizzaapplication/model/mailer/PizzaMailerSingletonBean.java +++ b/src/java/org/mxchange/pizzaapplication/model/mailer/PizzaMailerSingletonBean.java @@ -71,7 +71,7 @@ public class PizzaMailerSingletonBean extends BaseMailerBean implements Delivera 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 PizzaMailerSingletonBean extends BaseMailerBean implements Delivera } // Init Properties - Properties properties = new Properties(); + final Properties properties = new Properties(); // Is the bundle not empty? if (!bundle.keySet().isEmpty()) {