branch feature/8180 updated (bacb8bb -> d9e0c99)
This is an automated email from the git hooks/post-receive script. New change to branch feature/8180 in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from bacb8bb Force migration new d9e0c99 Add test on remove mooring acoustic import 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 d9e0c9952c8996808cf56be760cc31dd5dc869cf Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 10:46:21 2016 +0200 Add test on remove mooring acoustic import Summary of changes: .../main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 feature/8180 in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit d9e0c9952c8996808cf56be760cc31dd5dc869cf Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 10:46:21 2016 +0200 Add test on remove mooring acoustic import --- .../main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/echobase-domain/src/main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java b/echobase-domain/src/main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java index 41cc9bf..e5ae8a8 100644 --- a/echobase-domain/src/main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java +++ b/echobase-domain/src/main/java/fr/ifremer/echobase/entities/data/CellTopiaDao.java @@ -52,8 +52,8 @@ public class CellTopiaDao extends AbstractCellTopiaDao<Cell> { return topiaSqlSupport.findSingleResult(query); } - public List<String> getVoyageOrphanCellIds() throws TopiaException { - TopiaSqlQuery<String> query = newVoyageOrphanCellIdsQuery(); + public List<String> getOrphanCellIds() throws TopiaException { + TopiaSqlQuery<String> query = newOrphanCellIdsQuery(); return topiaSqlSupport.findMultipleResult(query); } @@ -167,7 +167,7 @@ public class CellTopiaDao extends AbstractCellTopiaDao<Cell> { }; } - protected TopiaSqlQuery<String> newVoyageOrphanCellIdsQuery() { + protected TopiaSqlQuery<String> newOrphanCellIdsQuery() { return new TopiaSqlQuery<String>() { @Override public PreparedStatement prepareQuery(Connection connection) throws SQLException { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm