From c2c4903196060d636c4423f8031b40aebf182b1f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 22 Sep 2022 19:18:26 +0200 Subject: [PATCH] Please cherry-pick: - no need to check for java.lang.String when it cannot be NULL --- .../beans/features/PizzaFeatureWebApplicationBean.java | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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; -- 2.39.5