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>.