Skip to content

Commit

Permalink
chore: remove the enforceFieldValidation feature flag (#16248) (CP: 2…
Browse files Browse the repository at this point in the history
…4.0) (#16262)

* chore: remove the enforceFieldValidation feature flag (#16248)

* fix errors after rebase
  • Loading branch information
vursen committed Mar 15, 2023
1 parent d633293 commit 6ee0214
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);
private List<Feature> features = new ArrayList<>();

File propertiesFolder = null;
Expand All @@ -80,7 +76,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));
loadProperties();
}

Expand Down

0 comments on commit 6ee0214

Please sign in to comment.