Skip to content

Commit

Permalink
Fix cargo error.
Browse files Browse the repository at this point in the history
  • Loading branch information
hexiaofeng committed May 28, 2024
1 parent 5e3563d commit 5b92eb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void addCargo(Cargo cargo) {
}
Cargo old = cargos.putIfAbsent(cargo.getKey(), cargo);
if (old != null && old != cargo) {
cargo.add(cargo.getValues());
old.add(cargo.getValues());
}
}
}
Expand Down

0 comments on commit 5b92eb3

Please sign in to comment.