Repository: incubator-groovy Updated Branches: refs/heads/master 842726e62 -> a53bf0116
GROOVY-7425: Add 'getBytes(Map parameters)' method to the URL class (Closes #16) Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/a53bf011 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/a53bf011 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/a53bf011 Branch: refs/heads/master Commit: a53bf01168959f1b230dbf646bcdd45c5f4d9de6 Parents: 842726e Author: Paul King <pa...@asert.com.au> Authored: Tue May 19 15:39:11 2015 +1000 Committer: Paul King <pa...@asert.com.au> Committed: Tue May 19 15:39:11 2015 +1000 ---------------------------------------------------------------------- src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/a53bf011/src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy ---------------------------------------------------------------------- diff --git a/src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy b/src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy index ffbeea1..afb383d 100644 --- a/src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy +++ b/src/test/org/codehaus/groovy/runtime/URLGetBytesTest.groovy @@ -29,7 +29,6 @@ class URLGetBytesTest extends GroovyTestCase { protected URLConnection openConnection(URL u) { new DummyURLConnection(new URL('http://groovy-lang.org')) } - }) assert url.bytes == 'Groovy'.bytes @@ -63,7 +62,6 @@ class URLGetBytesTest extends GroovyTestCase { boolean allowUserInteraction = false def properties = [:] - DummyURLConnection(final URL url) { super(url) } @@ -106,7 +104,6 @@ class URLGetBytesTest extends GroovyTestCase { properties[key] = value } - @Override void connect() { }