Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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())
);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<maven.compiler.release>17</maven.compiler.release>

<!--dependency versions -->
<checkstyle.version>14.0.0</checkstyle.version>
<checkstyle.version>14.1.0</checkstyle.version>
<slf4j.version>2.0.18</slf4j.version>
<h2.version>2.4.240</h2.version>
<javacc.version>7.0.13</javacc.version>
Expand Down
Loading