From: Roland Häder Date: Thu, 22 Sep 2022 17:18:26 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c2c4903196060d636c4423f8031b40aebf182b1f;p=pizzaservice-war.git Please cherry-pick: - no need to check for java.lang.String when it cannot be NULL --- diff --git a/src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java b/src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java index 2f242602..1a49372f 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/features/PizzaFeatureWebApplicationBean.java @@ -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;