Skip to content

Commit

Permalink
DT-798 addressed review comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
preetamnpr committed May 22, 2024
1 parent 873aefe commit b2d3dc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ private static Consumer<MultiAttributeValidator> allDg(Consumer<MultiAttributeVa
"Validate shipper's minimum request fields",
body -> {
var issues = new LinkedHashSet<String>();
var vesselName = body.has("vessel") ? body.path("vessel").path("name").asText(""): "";
var vesselName = body.path("vessel").path("name").asText("");
var carrierExportVoyageNumber = body.path("carrierExportVoyageNumber").asText("");
var carrierServiceCode = body.path("carrierServiceCode").asText("");
var carrierServiceName = body.path("carrierServiceName").asText("");
Expand Down

0 comments on commit b2d3dc1

Please sign in to comment.