From abc49b13a643e16e71dc67c15780c72c26de31c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 20:27:16 +0000 Subject: [PATCH 1/2] Bump com.puppycrawl.tools:checkstyle from 14.0.0 to 14.1.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 14.0.0 to 14.1.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-14.0.0...checkstyle-14.1.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 14.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9dac83b7f0..53578f9e25 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ 17 - 14.0.0 + 14.1.0 2.0.18 2.4.240 7.0.13 From c0af629c8234c17ded9d5b5b575bf0fb0cb91858 Mon Sep 17 00:00:00 2001 From: Ivan Date: Fri, 4 Sep 2026 02:43:48 +0300 Subject: [PATCH 2/2] remove unneeded parenthesis --- .../src/main/java/ru/curs/celesta/score/SequenceElement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celesta-core/src/main/java/ru/curs/celesta/score/SequenceElement.java b/celesta-core/src/main/java/ru/curs/celesta/score/SequenceElement.java index 2953e6494e..812ea1e7b6 100644 --- a/celesta-core/src/main/java/ru/curs/celesta/score/SequenceElement.java +++ b/celesta-core/src/main/java/ru/curs/celesta/score/SequenceElement.java @@ -78,7 +78,7 @@ void minValue(Long minValue) throws ParseException { * @throws ParseException */ void maxValue(Long maxValue) throws ParseException { - if (arguments.containsKey(Argument.MINVALUE) && ((Long) arguments.get(Argument.MINVALUE)) >= maxValue) { + if (arguments.containsKey(Argument.MINVALUE) && (Long) arguments.get(Argument.MINVALUE) >= maxValue) { throw new ParseException( String.format("MAXVALUE for sequence %s must be greater than MINVALUE", getName()) );