Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
GOODBOY008 committed Jul 26, 2024
1 parent ec1d033 commit 3eaa301
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public RestResponse verifySchema(String path) {
error = "Cannot use the root directory for checkpoints.";
}
if (error != null) {
restResponse = RestResponse.error(ResponseCode.CODE_FAIL,error,false);
restResponse = RestResponse.error(ResponseCode.CODE_FAIL, error, false);
}
return restResponse;
}
Expand All @@ -287,7 +287,7 @@ public RestResponse checkSavepointPath(Application app) throws Exception {
if (error == null) {
return RestResponse.success(true);
}
return RestResponse.error(ResponseCode.CODE_FAIL,error,false);
return RestResponse.error(ResponseCode.CODE_FAIL, error, false);
}

@Permission(app = "#id")
Expand Down

0 comments on commit 3eaa301

Please sign in to comment.