This is an automated email from the git hooks/post-receive script. New commit to branch feature/8170 in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit 822754f55f86f3b79fad6c31fd2f08f916cad6c8 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Apr 5 12:52:52 2016 +0200 Correction de la clef du cache de category --- .../echobase/services/service/importdata/ResultCategoryCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/importdata/ResultCategoryCache.java b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/importdata/ResultCategoryCache.java index 035e90d..5d8328d 100644 --- a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/importdata/ResultCategoryCache.java +++ b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/importdata/ResultCategoryCache.java @@ -53,7 +53,7 @@ public class ResultCategoryCache { public Category getResultCategory(Echotype echotype, SpeciesCategory speciesCategory, ImportDataFileResult importResult) { String key - = speciesCategory == null ? "" : speciesCategory.getTopiaId() + = (speciesCategory == null ? "" : speciesCategory.getTopiaId()) + "#" + (echotype == null ? "" : echotype.getName()); Category category = cache.get(key); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.