]> git.mxchange.org Git - jfinancials-war.git/blobdiff - src/java/org/mxchange/jfinancials/converter/business/opening_time/FinancialsCompanyOpeningTimeConverter.java
Updated copyright year
[jfinancials-war.git] / src / java / org / mxchange / jfinancials / converter / business / opening_time / FinancialsCompanyOpeningTimeConverter.java
index 86bbc8efeda4f3a4196ebf20b56c58059b77811b..866b6c2c248c176e44f90574ca6b424fdcb98b26 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 - 2020 Free Software Foundation
+ * Copyright (C) 2016 - 2022 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -44,9 +44,6 @@ public class FinancialsCompanyOpeningTimeConverter implements Converter<OpeningT
        public OpeningTime getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
                // Is the value null or empty?
                if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {
-                       // Warning message
-                       // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logWarning(MessageFormat.format("{0}.getAsObject(): submittedValue is null or empty - EXIT!", this.getClass().getSimpleName())); //NOI18N
-
                        // Return null
                        return null;
                }
@@ -54,16 +51,16 @@ public class FinancialsCompanyOpeningTimeConverter implements Converter<OpeningT
                // Init instance
                OpeningTime openingTime = null;
 
+               // Is the instance there?
+               if (null == OPENING_TIME_LIST_CONTROLLER) {
+                       // Get bean from CDI directly
+                       OPENING_TIME_LIST_CONTROLLER = CDI.current().select(FinancialsOpeningTimeListWebViewBean.class).get();
+               }
+
                try {
                        // Try to parse the value as long
                        final Long openingTimeId = Long.valueOf(submittedValue);
 
-                       // Is the instance there?
-                       if (null == OPENING_TIME_LIST_CONTROLLER) {
-                               // Get bean from CDI directly
-                               OPENING_TIME_LIST_CONTROLLER = CDI.current().select(FinancialsOpeningTimeListWebViewBean.class).get();
-                       }
-
                        // Try to get user instance from it
                        openingTime = OPENING_TIME_LIST_CONTROLLER.findOpeningTimeById(openingTimeId);
                } catch (final NumberFormatException ex) {