Skip to content

Commit

Permalink
* log-processor: updated d3-graphviz, supports "includes" in `/diagra…
Browse files Browse the repository at this point in the history
…m/arch`

Signed-off-by: neo <[email protected]>
  • Loading branch information
neowu committed Aug 30, 2024
1 parent 2ac6d00 commit 04dcc80
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ public Response action(Request request) {
return Response.html("/template/diagram.html", model);
}

int intParam(Map<String, String> params, String name, int defaultvalue) {
int intParam(Map<String, String> params, String name, int defaultValue) {
String hours = params.get(name);
return hours == null ? defaultvalue : Integer.parseInt(hours);
return hours == null ? defaultValue : Integer.parseInt(hours);
}

List<String> listParam(Map<String, String> params, String paramName) {
Expand Down

0 comments on commit 04dcc80

Please sign in to comment.