Skip to content

Commit

Permalink
fix(LapCountResource): make DAO attributes private
Browse files Browse the repository at this point in the history
  • Loading branch information
NuttyShrimp committed Apr 4, 2024
1 parent 9fffdd0 commit 2e8bc9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/telraam/api/LapCountResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
@Tag(name="Lap Counts")
@Produces(MediaType.APPLICATION_JSON)
public class LapCountResource {
TeamDAO teamDAO;
LapDAO lapDAO;
private TeamDAO teamDAO;
private LapDAO lapDAO;

public LapCountResource(TeamDAO teamDAO, LapDAO lapDAO) {
this.teamDAO = teamDAO;
Expand Down

0 comments on commit 2e8bc9a

Please sign in to comment.