This is an automated email from the ASF dual-hosted git repository. sunlan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push: new 3fb62d5 Add `serialVersionUID` 3fb62d5 is described below commit 3fb62d56161f3276f68082048ce796cedf1a95e4 Author: Daniel Sun <sun...@apache.org> AuthorDate: Tue Dec 8 21:11:55 2020 +0800 Add `serialVersionUID` --- .../src/main/groovy/org/apache/groovy/ginq/dsl/GinqSyntaxError.java | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/dsl/GinqSyntaxError.java b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/dsl/GinqSyntaxError.java index 86d539c..b2fb3a0 100644 --- a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/dsl/GinqSyntaxError.java +++ b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/dsl/GinqSyntaxError.java @@ -26,6 +26,7 @@ import org.codehaus.groovy.ast.expr.Expression; * @since 4.0.0 */ public class GinqSyntaxError extends AssertionError { + private static final long serialVersionUID = 1106607493949279933L; private final int line; private final int column;