From 60ee1583fd1973a58903255c3ff1b5c8eaa1253e Mon Sep 17 00:00:00 2001 From: uogau Date: Mon, 9 Aug 2021 18:13:07 +0200 Subject: [PATCH] Fixed Checkstyle --- src/main/java/edu/kit/typicalc/model/parser/ParseError.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/edu/kit/typicalc/model/parser/ParseError.java b/src/main/java/edu/kit/typicalc/model/parser/ParseError.java index 22d119a..97c83f7 100644 --- a/src/main/java/edu/kit/typicalc/model/parser/ParseError.java +++ b/src/main/java/edu/kit/typicalc/model/parser/ParseError.java @@ -258,11 +258,13 @@ public final class ParseError { ParseError that = (ParseError) o; return wrongChar == that.wrongChar && correctChar == that.correctChar && position == that.position && causeEnum == that.causeEnum && cause.equals(that.cause) && needed.equals(that.needed) - && expected.equals(that.expected) && additional.equals(that.additional) && term.equals(that.term) && errorType.equals(that.errorType); + && expected.equals(that.expected) && additional.equals(that.additional) && term.equals(that.term) + && errorType.equals(that.errorType); } @Override public int hashCode() { - return Objects.hash(causeEnum, cause, needed, expected, additional, term, wrongChar, correctChar, position, errorType); + return Objects.hash(causeEnum, cause, needed, expected, additional, + term, wrongChar, correctChar, position, errorType); } }