Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 935DB200B8E for ; Mon, 12 Sep 2016 00:26:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 91CD0160AD4; Sun, 11 Sep 2016 22:26:16 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0C475160AC7 for ; Mon, 12 Sep 2016 00:26:15 +0200 (CEST) Received: (qmail 2891 invoked by uid 500); 11 Sep 2016 22:26:15 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 2882 invoked by uid 99); 11 Sep 2016 22:26:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Sep 2016 22:26:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1023FE025B; Sun, 11 Sep 2016 22:26:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulk@apache.org To: commits@groovy.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: groovy git commit: entrySet should return a Set of Entries (closes #410) Date: Sun, 11 Sep 2016 22:26:15 +0000 (UTC) archived-at: Sun, 11 Sep 2016 22:26:16 -0000 Repository: groovy Updated Branches: refs/heads/GROOVY_2_4_X 96f1ea754 -> 7e19592c1 entrySet should return a Set of Entries (closes #410) So we don't have to cast it Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/7e19592c Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/7e19592c Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/7e19592c Branch: refs/heads/GROOVY_2_4_X Commit: 7e19592c1155c1eb8e5c9af155e93b8716fa3da6 Parents: 96f1ea7 Author: AarjavP Authored: Fri Sep 2 18:56:32 2016 -0400 Committer: paulk Committed: Mon Sep 12 08:26:01 2016 +1000 ---------------------------------------------------------------------- .../groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/7e19592c/subprojects/groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java ---------------------------------------------------------------------- diff --git a/subprojects/groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java b/subprojects/groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java index 198977b..00224bf 100644 --- a/subprojects/groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java +++ b/subprojects/groovy-sql/src/main/java/groovy/sql/GroovyRowResult.java @@ -132,7 +132,7 @@ public class GroovyRowResult extends GroovyObjectSupport implements Map { return result.containsValue(value); } - public Set entrySet() { + public Set entrySet() { return result.entrySet(); }