]> git.mxchange.org Git - addressbook-mailer-ejb.git/blobdiff - src/java/org/mxchange/addressbook/mailer/model/delivery/AddressbookMailerSingletonBean.java
Please cherry-pick:
[addressbook-mailer-ejb.git] / src / java / org / mxchange / addressbook / mailer / model / delivery / AddressbookMailerSingletonBean.java
index 81ecdbe6f4d21248c1dc2020458b07ec5a232e2c..75ddf655ec685a13d1f131df5a6f0b8cf6b5a5cb 100644 (file)
@@ -71,7 +71,7 @@ public class AddressbookMailerSingletonBean extends BaseMailerBean implements De
                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 AddressbookMailerSingletonBean extends BaseMailerBean implements De
                }
 
                // Init Properties
-               Properties properties = new Properties();
+               final Properties properties = new Properties();
 
                // Is the bundle not empty?
                if (!bundle.keySet().isEmpty()) {