Skip to content

Commit

Permalink
Remove success state from default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
YongGoose committed Feb 22, 2025
1 parent 7d72ec0 commit 3b4370f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Result implements Serializable {
private final String message;

public Result() {
this(SUCCESS.code, SUCCESS.msg);
this(null, null);
}

public Result(String code, String message) {
Expand Down

0 comments on commit 3b4370f

Please sign in to comment.