Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove the enforceFieldValidation feature flag #16248

Merged
merged 1 commit into from
Mar 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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