Skip to content
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 @@ -32,7 +32,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.vaadin.experimental.FeatureFlags;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.HasElement;
import com.vaadin.flow.component.Key;
Expand Down Expand Up @@ -195,10 +194,7 @@ protected void initSignalsSupport() {
throw new IllegalStateException(
"Cannot initialize Signals support because VaadinService is not available");
}
if (FeatureFlags.get(service.getContext())
.isEnabled(FeatureFlags.FLOW_FULLSTACK_SIGNALS.getId())) {
signalsTestEnvironment = TestSignalEnvironment.register();
}
signalsTestEnvironment = TestSignalEnvironment.register();
}

/**
Expand Down
Loading