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())
);
diff --git a/pom.xml b/pom.xml
index 9dac83b7f0..53578f9e25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,7 +57,7 @@