branch develop updated (657a5f6 -> d80d9cc)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository nuiton-utils. See http://git.nuiton.org/nuiton-utils.git from 657a5f6 Add obtainSourceProperty and obtainTargetProperty in Binder (fixes #3769) Merge branch 'feature/3769' into develop new d80d9cc Fix target type (See #3769) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit d80d9cc3dd693249888126aa8166af2aacee3b59 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Aug 26 10:15:59 2015 +0200 Fix target type (See #3769) Summary of changes: src/main/java/org/nuiton/util/beans/Binder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-utils. See http://git.nuiton.org/nuiton-utils.git commit d80d9cc3dd693249888126aa8166af2aacee3b59 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Aug 26 10:15:59 2015 +0200 Fix target type (See #3769) --- src/main/java/org/nuiton/util/beans/Binder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/nuiton/util/beans/Binder.java b/src/main/java/org/nuiton/util/beans/Binder.java index 20354bf..0200349 100644 --- a/src/main/java/org/nuiton/util/beans/Binder.java +++ b/src/main/java/org/nuiton/util/beans/Binder.java @@ -292,7 +292,7 @@ public class Binder<I, O> implements Serializable { * @return the property value in the target object. * @since 3.0 */ - public <OO> OO obtainTargetProperty(I target, String propertyName) { + public <OO> OO obtainTargetProperty(O target, String propertyName) { Preconditions.checkNotNull(target, "target can not be null"); Preconditions.checkNotNull(propertyName, "propertyName can not be null"); -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm