Sho SHIMIZU
Committed by Gerrit Code Review

Simplify catch branch

Change-Id: I328d80f60f388eb0e9eaa63746c65a40c0d8040a
......@@ -91,9 +91,7 @@ public class CounterTestIncrementCommand extends AbstractShellCommand {
print("%s was updated to %d", counter, result.get(3, TimeUnit.SECONDS));
} catch (InterruptedException e) {
return;
} catch (ExecutionException e) {
e.printStackTrace();
} catch (TimeoutException e) {
} catch (ExecutionException | TimeoutException e) {
e.printStackTrace();
}
}
......