Skip to content

Commit

Permalink
Fix: ResponseDto 필드변수 이름 수정 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jang99u authored May 9, 2024
1 parent 3456ff2 commit 76a3f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ice/spot/dto/global/ResponseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public record ResponseDto<T> (
@JsonIgnore HttpStatus httpStatus,
boolean success,
@Nullable T data,
@Nullable ExceptionDto exceptionDto
@Nullable ExceptionDto error
) {
public static <T> ResponseDto<T> ok(T data){
return new ResponseDto<>(
Expand Down

0 comments on commit 76a3f3e

Please sign in to comment.