Skip to content

Commit

Permalink
♻️ refactor: refactor codebase #2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Sep 3, 2024
1 parent ba3b6be commit 5c6bf9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Object execute(ProceedingJoinPoint joinPoint) throws Throwable {
return proceed;
}
Map<String, Object> headers = Request4j.getHeaders(Clarify4j.getRequest());
logger.info("Clarify4j, HTTP requesting: [JSESSIONID.REQ.ID]: {}, URL: {}, header(s): {}",
logger.info("Clarify4j, HTTP requesting [JSESSIONID.REQ.ID]: {}, [URL]: {}, [Header(s)]: {}",
Clarify4j.getCurrentSessionId(),
Request4j.getFullUrl(Clarify4j.getRequest()),
Json4j.toJson(headers));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public boolean isValid(String value, ConstraintValidatorContext context) {
if (String4j.isEmpty(value)) {
return false;
}
return String4j.isNumeric(value) && Regex4j.isNumeric(value);
return Regex4j.isNumeric(value);
}
}

0 comments on commit 5c6bf9d

Please sign in to comment.