Skip to content

Commit

Permalink
chore: remove the enforceFieldValidation feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Mar 13, 2023
1 parent c55e06d commit c5f3feb
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Feature> features = new ArrayList<>();
Expand All @@ -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();
}
Expand Down

0 comments on commit c5f3feb

Please sign in to comment.