branch develop updated (6a57ee5 -> 78eecd4)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from 6a57ee5 Livrable #8178 Merge branch 'feature/8178' into develop new d8e8939 Use eugene stable version new 78eecd4 Use Topia working findAllLazy method The 2 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 78eecd432b7983069fcfd3000f4394b69dc56313 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun May 1 17:11:58 2016 +0200 Use Topia working findAllLazy method commit d8e8939ccda736a9bd977ab1ec3c9d8d217b57b1 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun May 1 17:11:19 2016 +0200 Use eugene stable version Summary of changes: .../fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java | 12 +++--------- pom.xml | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit d8e8939ccda736a9bd977ab1ec3c9d8d217b57b1 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun May 1 17:11:19 2016 +0200 Use eugene stable version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b0b1a2..b4fcb07 100644 --- a/pom.xml +++ b/pom.xml @@ -481,7 +481,7 @@ <plugin> <groupId>org.nuiton.eugene</groupId> <artifactId>eugene-maven-plugin</artifactId> - <version>3.0-SNAPSHOT</version> + <version>3.0-alpha-5</version> <dependencies> <dependency> <groupId>org.nuiton.topia</groupId> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit 78eecd432b7983069fcfd3000f4394b69dc56313 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun May 1 17:11:58 2016 +0200 Use Topia working findAllLazy method --- .../fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/echobase-domain/src/main/java/fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java b/echobase-domain/src/main/java/fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java index d4970f1..3df60bf 100644 --- a/echobase-domain/src/main/java/fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java +++ b/echobase-domain/src/main/java/fr/ifremer/echobase/entities/ImportFileIdTopiaDao.java @@ -8,15 +8,9 @@ public class ImportFileIdTopiaDao extends AbstractImportFileIdTopiaDao<ImportFil public Iterable<ImportFileId> getImportFileIdsForImportFile(ImportFile importFile) { - //TODO Use this when https://forge.nuiton.org/issues/3950 is ok -// return forImportFileEquals(importFile) -// .setOrderByArguments(ImportFileId.PROPERTY_IMPORT_ORDER) -// .findAllLazy(); - - HqlAndParametersBuilder<ImportFileId> builder = newHqlAndParametersBuilder(); - builder.addEquals(ImportFileId.PROPERTY_IMPORT_FILE, importFile); - builder.setOrderByArguments(ImportFileId.PROPERTY_IMPORT_ORDER); - return findAllLazy(builder.getHql(), builder.getHqlParameters()); + return forImportFileEquals(importFile) + .setOrderByArguments(ImportFileId.PROPERTY_IMPORT_ORDER) + .findAllLazy(); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm