]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Thu, 22 Sep 2022 17:18:26 +0000 (19:18 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 22 Sep 2022 19:23:48 +0000 (21:23 +0200)
- no need to check for java.lang.String when it cannot be NULL

src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java

index 2f24260252d195942d3578f52cb1daed6bbc04e8..1a49372fc735181c193438348b9d81a647a40ec5 100644 (file)
@@ -61,17 +61,11 @@ public class PizzaFeatureWebApplicationBean extends BasePizzaBean implements Piz
                        throw new IllegalArgumentException("feature is empty"); //NOI18N
                }
 
-               // Default is not enabled
-               boolean isEnabled = false;
-
                // Get value from property
                final String contextParameter = this.getStringContextParameter(String.format("is_feature_%s_enabled", feature)); //NOI18N
 
-               // Is the context parameter found?
-               if (contextParameter instanceof String) {
-                       // Is it set?
-                       isEnabled = (Boolean.parseBoolean(contextParameter) == Boolean.TRUE);
-               }
+               // Default is not enabled
+               final boolean isEnabled = (Boolean.parseBoolean(contextParameter) == Boolean.TRUE);
 
                // Return status
                return isEnabled;