Skip to content

Commit

Permalink
fix architecture tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Jan 23, 2025
1 parent d94e767 commit b0de277
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,10 @@
public class UnitAuthorizationService {
private final UnitBusinessService unitBusinessService;
private final AuthorizationService authorizationService;
private final UnitValidationService unitValidationService;

public UnitAuthorizationService(UnitBusinessService unitBusinessService, AuthorizationService authorizationService,
UnitValidationService unitValidationService) {
public UnitAuthorizationService(UnitBusinessService unitBusinessService, AuthorizationService authorizationService) {
this.unitBusinessService = unitBusinessService;
this.authorizationService = authorizationService;
this.unitValidationService = unitValidationService;
}

public List<Unit> getAllUnits() {
Expand Down

0 comments on commit b0de277

Please sign in to comment.