Skip to content

Commit

Permalink
fix: change code type (Integer -> int) (#9)
Browse files Browse the repository at this point in the history
code의 값이 null인 경우는 존재하지 않기 때문에 int 타입으로 변경
  • Loading branch information
cheayoung.lee committed Dec 13, 2023
1 parent 68a327f commit 48fc981
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Builder
public class ErrorDTO {

private Integer code;
private int code;
private String msg;
private String detail;

Expand Down

0 comments on commit 48fc981

Please sign in to comment.