You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2021/07/18 08:23:35 UTC

[groovy] branch master updated: Add `serialVersionUID`

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 68e274b  Add `serialVersionUID`
68e274b is described below

commit 68e274bc116611fa785704e01a8213a53a480c6e
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Jul 18 16:22:54 2021 +0800

    Add `serialVersionUID`
---
 .../org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java
index 0439a89..a4c20c8 100644
--- a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java
+++ b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java
@@ -9,6 +9,8 @@ import java.util.stream.Stream;
  * @since 4.0.0
  */
 class GroupImpl<T> extends QueryableCollection<T> implements Group<T> {
+    private static final long serialVersionUID = 5737735821215711785L;
+
     GroupImpl(Iterable<T> sourceIterable) {
         super(sourceIterable);
     }