Skip to content

Commit

Permalink
Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Apr 4, 2024
1 parent acab96d commit 8808310
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Response getAllUserDatasetFileJBrowse(@QueryParam("data") String data,

String path = String.format("%s/build-%s/%s/%s/%s", udDir, buildNumber, getWdkModel().getProjectId(), datasetID, data);

LOG.info("Looking up jbrowse files for dataset {} in directory " + path)
LOG.info("Looking up jbrowse files for dataset {} in directory " + path);

if (path.contains("..") || path.contains("$")) {
throw new NotFoundException(formatNotFound("*"));
Expand Down

0 comments on commit 8808310

Please sign in to comment.