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:33:41 UTC

[groovy] branch master updated: Trivial refactoring: remove unused constructor

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 92d6fff  Trivial refactoring: remove unused constructor
92d6fff is described below

commit 92d6fffe225e2caf75aca55b6c5f9dd0c8352676
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Jul 18 16:33:40 2021 +0800

    Trivial refactoring: remove unused constructor
---
 .../org/apache/groovy/ginq/provider/collection/runtime/GroupImpl.java | 4 ----
 1 file changed, 4 deletions(-)

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 a4c20c8..743ac3d 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
@@ -11,10 +11,6 @@ import java.util.stream.Stream;
 class GroupImpl<T> extends QueryableCollection<T> implements Group<T> {
     private static final long serialVersionUID = 5737735821215711785L;
 
-    GroupImpl(Iterable<T> sourceIterable) {
-        super(sourceIterable);
-    }
-
     GroupImpl(Stream<T> sourceStream) {
         super(sourceStream);
     }