branch feature/7553 updated (a79e2e3 -> 0a70a85)
This is an automated email from the git hooks/post-receive script. New change to branch feature/7553 in repository observe. See http://git.codelutin.com/observe.git from a79e2e3 - rustine sur le DataContextType pour la sélection du parentId dans l'arbre - fix bug de decorator (refs #7553) new 0a70a85 remove fixme 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 0a70a856774973408c236db8836d909486d74e54 Author: Kevin Morin <morin@codelutin.com> Date: Mon Oct 5 15:30:25 2015 +0200 remove fixme Summary of changes: .../fr/ird/observe/business/db/constants/DataContextType.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/7553 in repository observe. See http://git.codelutin.com/observe.git commit 0a70a856774973408c236db8836d909486d74e54 Author: Kevin Morin <morin@codelutin.com> Date: Mon Oct 5 15:30:25 2015 +0200 remove fixme --- .../fr/ird/observe/business/db/constants/DataContextType.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/observe-application-swing/src/main/java/fr/ird/observe/business/db/constants/DataContextType.java b/observe-application-swing/src/main/java/fr/ird/observe/business/db/constants/DataContextType.java index 122b953..73448a7 100644 --- a/observe-application-swing/src/main/java/fr/ird/observe/business/db/constants/DataContextType.java +++ b/observe-application-swing/src/main/java/fr/ird/observe/business/db/constants/DataContextType.java @@ -315,13 +315,9 @@ public enum DataContextType { DataContextType result = null; for (DataContextType type : DataContextType.values()) { - //FIXME kmorin 20151005 comment checker que l'id topia match le DTO -// if (s.startsWith(type.getType().getName())) { -// result = type; -// break; -// } String[] entityFullClass = s.split("#")[0].split("\\."); - if (type.getType().getSimpleName().startsWith(entityFullClass[entityFullClass.length - 1])) { + String typeName = type.getType().getSimpleName(); + if (typeName.startsWith(entityFullClass[entityFullClass.length - 1])) { result = type; break; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
participants (1)
-
codelutin.com scm