- added final modifier as the object reference shall never be changed
Signed-off-by: Roland Häder <roland@mxchange.org>
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
}
// Init Properties
- Properties properties = new Properties();
+ final Properties properties = new Properties();
// Is the bundle not empty?
if (!bundle.keySet().isEmpty()) {