From c5f3feb1f436affe67b373c3e52d643550c142af Mon Sep 17 00:00:00 2001 From: Sergey Vinogradov Date: Mon, 13 Mar 2023 15:43:18 +0200 Subject: [PATCH] chore: remove the enforceFieldValidation feature flag --- .../src/main/java/com/vaadin/experimental/FeatureFlags.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/flow-server/src/main/java/com/vaadin/experimental/FeatureFlags.java b/flow-server/src/main/java/com/vaadin/experimental/FeatureFlags.java index 45aac7f0190..7cdf5bc83a2 100644 --- a/flow-server/src/main/java/com/vaadin/experimental/FeatureFlags.java +++ b/flow-server/src/main/java/com/vaadin/experimental/FeatureFlags.java @@ -58,10 +58,6 @@ public class FeatureFlags implements Serializable { "Collaboration Engine backend for clustering support", "collaborationEngineBackend", "https://github.com/vaadin/platform/issues/1988", true, null); - public static final Feature ENFORCE_FIELD_VALIDATION = new Feature( - "Enforce client / constraint / binder validation", - "enforceFieldValidation", - "https://github.com/vaadin/platform/issues/3066", false, null); public static final Feature THEME_EDITOR = new Feature("Theme Editor", "themeEditor", null, true, null); private List features = new ArrayList<>(); @@ -82,7 +78,6 @@ public FeatureFlags(Lookup lookup) { this.lookup = lookup; features.add(new Feature(EXAMPLE)); features.add(new Feature(COLLABORATION_ENGINE_BACKEND)); - features.add(new Feature(ENFORCE_FIELD_VALIDATION)); features.add(new Feature(THEME_EDITOR)); loadProperties(); }