]> git.mxchange.org Git - addressbook-war.git/commitdiff
tpyo fixed ...
authorRoland Haeder <roland@mxchange.org>
Fri, 4 Mar 2016 20:35:17 +0000 (21:35 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 4 Mar 2016 20:35:17 +0000 (21:35 +0100)
src/java/org/mxchange/addressbook/converter/country/CountryConverter.java
src/java/org/mxchange/addressbook/converter/smsprovider/SmsProviderConverter.java
src/java/org/mxchange/addressbook/converter/user/UserConverter.java

index a29b64c5cb9abe1c56ce1e9ae28b42fb574589bc..98ede54c9215031835ef76b4379184242366b478 100644 (file)
@@ -73,7 +73,7 @@ public class CountryConverter implements Converter {
        @Override
        public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
                // Trace message
-               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: contect={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
+               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: context={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
 
                // Get full list
                List<Country> countryList = this.countryController.allCountries();
index 6b3b6884160fccd00d5c29c78a486f26b6e15f96..5329bd16097e605c807d53021797ebc02a184965 100644 (file)
@@ -73,7 +73,7 @@ public class SmsProviderConverter implements Converter {
        @Override
        public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
                // Trace message
-               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: contect={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
+               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: context={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
 
                // Get full list
                List<SmsProvider> providerList = this.providerController.allSmsProvider();
index 8d0592febc0fe7ce3133e2465427f83c3312c9ee..2da8327b71afd3745f890b4e9f871734269bf03e 100644 (file)
@@ -73,7 +73,7 @@ public class UserConverter implements Converter {
        @Override
        public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
                // Trace message
-               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: contect={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
+               this.loggerBeanLocal.logTrace(MessageFormat.format("getAsObject: context={0},component={1},submittedValue={2} - CALLED!", context, component, submittedValue)); //NOI18N
 
                // Is the value null or empty?
                if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {