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 DA7B9200C43 for ; Sun, 19 Feb 2017 02:49:23 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D9478160B8B; Sun, 19 Feb 2017 01:49:23 +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 7382F160B77 for ; Sun, 19 Feb 2017 02:49:22 +0100 (CET) Received: (qmail 30323 invoked by uid 500); 19 Feb 2017 01:49:20 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 28650 invoked by uid 99); 19 Feb 2017 01:49:19 -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, 19 Feb 2017 01:49:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 642F6DFF9B; Sun, 19 Feb 2017 01:49:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: djencks@apache.org To: scm@geronimo.apache.org Date: Sun, 19 Feb 2017 01:49:47 -0000 Message-Id: <55d085ae1dfd4622b9be21565a21a51f@git.apache.org> In-Reply-To: <25b50a4a464d44eaa0513fb6de55f6f0@git.apache.org> References: <25b50a4a464d44eaa0513fb6de55f6f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [30/51] [abbrv] geronimo-yoko git commit: Correct helper read lookup archived-at: Sun, 19 Feb 2017 01:49:24 -0000 Correct helper read lookup Project: http://git-wip-us.apache.org/repos/asf/geronimo-yoko/repo Commit: http://git-wip-us.apache.org/repos/asf/geronimo-yoko/commit/7945cba8 Tree: http://git-wip-us.apache.org/repos/asf/geronimo-yoko/tree/7945cba8 Diff: http://git-wip-us.apache.org/repos/asf/geronimo-yoko/diff/7945cba8 Branch: refs/heads/master Commit: 7945cba8cf9378f20401253b2cb08f09b8dea97e Parents: 76d3b50 Author: Neil GM Richards Authored: Sun Mar 27 11:08:25 2016 +0100 Committer: Neil GM Richards Committed: Sun Mar 27 11:08:25 2016 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geronimo-yoko/blob/7945cba8/yoko-rmi-impl/src/main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java ---------------------------------------------------------------------- diff --git a/yoko-rmi-impl/src/main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java b/yoko-rmi-impl/src/main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java index c7949fe..c7ff610 100755 --- a/yoko-rmi-impl/src/main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java +++ b/yoko-rmi-impl/src/main/java/org/apache/yoko/rmi/impl/IDLEntityDescriptor.java @@ -56,7 +56,7 @@ class IDLEntityDescriptor extends ValueDescriptor { private volatile Method readMethod = null; private Method getReadMethod() { - if (null == readMethod) readMethod = genHelperMethod("write"); + if (null == readMethod) readMethod = genHelperMethod("read"); return readMethod; }