From c4e8ad4117bfc5f89c5216c115bf189dd8b7058a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 3 Mar 2019 20:17:32 +0000 Subject: [PATCH] Bump kemitix-maven-tiles from 1.3.1 to 2.2.0 (#44) * Bump kemitix-maven-tiles from 1.3.1 to 2.1.3 Remove unused throws Exception to comply with new spotbugs rules. * [changelog] updated * Remove redundant pom property * Bump kemitix-maven-tiles from 2.1.3 to 2.2.0 * [changelog] updated --- CHANGELOG.org | 2 +- pom.xml | 3 +-- src/main/java/net/kemitix/conditional/FalseCondition.java | 2 +- src/main/java/net/kemitix/conditional/TrueCondition.java | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 5936633..12117a8 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -26,7 +26,7 @@ The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog] ** Dependencies - Bump assertj-core from 3.11.0 to 3.11.1 (#38) - - Bump kemitix-maven-tiles from 0.9.0 to 1.3.1 (#40) + - Bump kemitix-maven-tiles from 0.9.0 to 2.2.0 (#40)(#44) - Bump kemitix-parent from 5.1.1 to 5.2.0 (#39) * 0.7.0 diff --git a/pom.xml b/pom.xml index e61a2c0..4c4175c 100644 --- a/pom.xml +++ b/pom.xml @@ -17,9 +17,8 @@ 4.1.1 4.12 3.11.1 - 4.3.0 2.12 - 1.3.1 + 2.2.0 1.18.4 diff --git a/src/main/java/net/kemitix/conditional/FalseCondition.java b/src/main/java/net/kemitix/conditional/FalseCondition.java index aaa0f2c..5b0b99a 100644 --- a/src/main/java/net/kemitix/conditional/FalseCondition.java +++ b/src/main/java/net/kemitix/conditional/FalseCondition.java @@ -59,7 +59,7 @@ final class FalseCondition implements Condition { } @Override - public void thenThrow(final Supplier exceptionSupplier) throws Exception { + public void thenThrow(final Supplier exceptionSupplier) { // do nothing } diff --git a/src/main/java/net/kemitix/conditional/TrueCondition.java b/src/main/java/net/kemitix/conditional/TrueCondition.java index 256c762..0708ae3 100644 --- a/src/main/java/net/kemitix/conditional/TrueCondition.java +++ b/src/main/java/net/kemitix/conditional/TrueCondition.java @@ -65,12 +65,12 @@ final class TrueCondition implements Condition { } @Override - public void otherwiseThrow(final Exception exception) throws Exception { + public void otherwiseThrow(final Exception exception) { // do nothing } @Override - public void otherwiseThrow(final Supplier exceptionSupplier) throws Exception { + public void otherwiseThrow(final Supplier exceptionSupplier) { // do nothing }