Skip to content

Commit

Permalink
Remove throws from parallelSendProduct, now that exception handling u…
Browse files Browse the repository at this point in the history
…pdated
  • Loading branch information
jmfee-usgs committed Apr 4, 2020
1 parent 8e318fa commit b787b21
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,7 @@ public void startup() throws Exception {
public static Map<ProductSender, Exception> parallelSendProduct(
final List<ProductSender> senders,
final Product product,
final long timeoutSeconds
) throws InterruptedException {
final long timeoutSeconds) {
final Map<ProductSender, Boolean> sendComplete = new HashMap<ProductSender, Boolean>();
final Map<ProductSender, Exception> sendExceptions = new HashMap<ProductSender, Exception>();

Expand Down

0 comments on commit b787b21

Please sign in to comment.