Skip to content

Commit

Permalink
[STYLE] 카멜케이스 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
happyjamy committed Feb 27, 2024
1 parent 3a427bb commit d021040
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ public enum ActivityType {
FRESH_DEVELOPER(List.of(28, 29, 30)),
;

private final List<Integer> IncludedDbIdList;
private final List<Integer> includedDbIdList;

ActivityType(List<Integer> includedDbIdList) {
IncludedDbIdList = includedDbIdList;
this.includedDbIdList = includedDbIdList;
}


}

0 comments on commit d021040

Please sign in to comment.