Skip to content

Commit

Permalink
fixed javadoc error breaking the build
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed May 4, 2022
1 parent 8229d0a commit 103329d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public final class GatewayCachingSignalEnrichmentProvider extends GatewaySignalE
* Instantiate this provider. Called by reflection.
*
* @param actorSystem The actor system for which this provider is instantiated.
* @param signalEnrichmentConfig Configuration for this provider.
*/
public GatewayCachingSignalEnrichmentProvider(final ActorSystem actorSystem) {
super(actorSystem);
Expand Down
1 change: 1 addition & 0 deletions policies/enforcement/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-policies-model</artifactId>
</dependency>
<!-- TODO TJ this should not rely on things-model (it currently does because of placeholders package - which could be pulled out) -->
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-things-model</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected ActorRef startActorUnderTest(final ActorSystem actorSystem, final Acto
protected ActorRef startEntityActor(final ActorSystem system, final ActorRef pubSubMediator, final ThingId id) {

final TestProbe policiesShardRegionTestProbe = TestProbe.apply("mock-policiesShardRegion", system);
final ActorRef policiesShardRegion = policiesShardRegionTestProbe.ref(); // TODO TJ is this sufficient here?
final ActorRef policiesShardRegion = policiesShardRegionTestProbe.ref();

final Props props =
ThingSupervisorActor.props(pubSubMediator, policiesShardRegion,
Expand Down

0 comments on commit 103329d

Please sign in to comment.