You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2017/02/19 01:49:47 UTC

[30/51] [abbrv] geronimo-yoko git commit: Correct helper read lookup

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 <ne...@uk.ibm.com>
Authored: Sun Mar 27 11:08:25 2016 +0100
Committer: Neil GM Richards <ne...@uk.ibm.com>
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;
     }