Repository: groovy Updated Branches: refs/heads/master 38b2ef551 -> b6a3a4d6f
GROOVY-5936: provide an iterator backed implementation for Iterator DGM dropRight rather than convert to a list (additional test - fix for java 1.7) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/b6a3a4d6 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/b6a3a4d6 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/b6a3a4d6 Branch: refs/heads/master Commit: b6a3a4d6f5bea5458e736da5893adf489d811807 Parents: 38b2ef5 Author: paulk <[email protected]> Authored: Thu Aug 4 16:57:59 2016 +1000 Committer: paulk <[email protected]> Committed: Thu Aug 4 16:57:59 2016 +1000 ---------------------------------------------------------------------- src/test/groovy/GroovyMethodsTest.groovy | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/b6a3a4d6/src/test/groovy/GroovyMethodsTest.groovy ---------------------------------------------------------------------- diff --git a/src/test/groovy/GroovyMethodsTest.groovy b/src/test/groovy/GroovyMethodsTest.groovy index 7c0a39f..cbffeb5 100644 --- a/src/test/groovy/GroovyMethodsTest.groovy +++ b/src/test/groovy/GroovyMethodsTest.groovy @@ -1846,6 +1846,7 @@ class ExplodingList extends ArrayList { new Iterator() { boolean hasNext() { cursor < ExplodingList.this.size() } def next() { ExplodingList.this.get(cursor++) } + void remove() {} } } }
