This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2a13a9ca4ab174b9ebb8cdae319eb6ffbfd5074e Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Tue Mar 8 13:50:23 2022 +0100 CAMEL-17763: cleaned up unused exceptions in camel-azure-storage-datalake --- .../azure/storage/datalake/integration/DataLakeProducerIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-azure/camel-azure-storage-datalake/src/test/java/org/apache/camel/component/azure/storage/datalake/integration/DataLakeProducerIT.java b/components/camel-azure/camel-azure-storage-datalake/src/test/java/org/apache/camel/component/azure/storage/datalake/integration/DataLakeProducerIT.java index ff193de..cc5bd4e 100644 --- a/components/camel-azure/camel-azure-storage-datalake/src/test/java/org/apache/camel/component/azure/storage/datalake/integration/DataLakeProducerIT.java +++ b/components/camel-azure/camel-azure-storage-datalake/src/test/java/org/apache/camel/component/azure/storage/datalake/integration/DataLakeProducerIT.java @@ -46,7 +46,7 @@ public class DataLakeProducerIT extends Base { } @Test - void testConsumer() throws Exception { + void testConsumer() { { @SuppressWarnings("unchecked") @@ -105,7 +105,7 @@ public class DataLakeProducerIT extends Base { } @Test - void testHeaderPreservation() throws InterruptedException { + void testHeaderPreservation() { Exchange result = template.send(componentUri(fileSystemName, DataLakeOperationsDefinition.listFileSystem), exchange -> { exchange.getIn().setHeader("DoNotDelete", "keep me");
