mirror of
https://github.com/DerDavidBohl/dirigent-spring.git
synced 2026-04-25 19:50:08 -05:00
Small visibility changes
https://github.com/DerDavidBohl/dirigent-spring/issues/21
This commit is contained in:
+2
-2
@@ -13,8 +13,8 @@ import java.util.stream.StreamSupport;
|
||||
@Service
|
||||
public class DeploymentStatePersistingService {
|
||||
|
||||
final DeploymentStateRepository deploymentStateRepository;
|
||||
final ApplicationEventPublisher applicationEventPublisher;
|
||||
private final DeploymentStateRepository deploymentStateRepository;
|
||||
private final ApplicationEventPublisher applicationEventPublisher;
|
||||
|
||||
public DeploymentStatePersistingService(DeploymentStateRepository deploymentStateRepository, ApplicationEventPublisher applicationEventPublisher) {
|
||||
this.deploymentStateRepository = deploymentStateRepository;
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@ package org.davidbohl.dirigent.deployments.state;
|
||||
|
||||
import org.springframework.data.repository.CrudRepository;
|
||||
|
||||
interface DeploymentStateRepository extends CrudRepository<DeploymentState, String> {
|
||||
public interface DeploymentStateRepository extends CrudRepository<DeploymentState, String> {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user