Skip to content

Commit

Permalink
#4682 PlanB State Store
Browse files Browse the repository at this point in the history
  • Loading branch information
stroomdev66 committed Jan 10, 2025
1 parent 93f6756 commit a2b6506
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
import stroom.pipeline.xsltfunctions.PlanBLookup;
import stroom.planb.impl.data.FileTransferClient;
import stroom.planb.impl.pipeline.PlanBElementModule;
import stroom.planb.impl.pipeline.PlanBLookupImpl;
import stroom.planb.impl.pipeline.StateProviderImpl;
import stroom.query.language.functions.StateProvider;
import stroom.util.entityevent.EntityEvent;
import stroom.util.guice.GuiceUtil;
import stroom.util.shared.Clearable;

import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import com.google.inject.util.Providers;

public class MockPlanBModule extends AbstractModule {
Expand All @@ -23,7 +21,7 @@ public class MockPlanBModule extends AbstractModule {
protected void configure() {
install(new PlanBElementModule());

bind(PlanBLookup.class).toProvider(Providers.of(null));//PlanBLookupImpl.class);
bind(PlanBLookup.class).toProvider(Providers.of(null));
GuiceUtil.buildMultiBinder(binder(), StateProvider.class).addBinding(StateProviderImpl.class);
bind(FileTransferClient.class).toProvider(Providers.of(null));

Expand Down

0 comments on commit a2b6506

Please sign in to comment.