Skip to content

Commit

Permalink
Fix: build error by making the variable final
Browse files Browse the repository at this point in the history
body in ResponseDTO
  • Loading branch information
jimin-kiim committed May 29, 2024
1 parent aa8aee2 commit a49550c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/blogue/blogue/util/ResponseDTO.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ResponseDTO <T> {
private Status status;
private T body = null;

public ResponseDTO(Status status, T body) {
public ResponseDTO(Status status, final T body) {
this.status = status;
this.body = body;
}
Expand Down

0 comments on commit a49550c

Please sign in to comment.