Skip to content

Commit

Permalink
Fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shanggeeth committed May 19, 2024
1 parent 6d2f88f commit 478306c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ private void setJavascriptResourceLimit() {
try {
javascriptResourceLimit = Integer.parseInt(statementLimit);
} catch (NumberFormatException e) {
LOG.warn("Error while parsing the script statement limit. Defaulting to " + DEFAULT_GRAALJS_SCRIPT_STATEMENTS_LIMIT, e);
LOG.warn("Error while parsing the script statement limit. Defaulting to " +
DEFAULT_GRAALJS_SCRIPT_STATEMENTS_LIMIT, e);
javascriptResourceLimit = DEFAULT_GRAALJS_SCRIPT_STATEMENTS_LIMIT;
}
} else {
Expand Down

0 comments on commit 478306c

Please sign in to comment.