Skip to content

Commit 433f0ae

Browse files
AS-3092: Implement ImportEndpointsImpl.
1 parent 7478a1d commit 433f0ae

File tree

1 file changed

+1
-1
lines changed
  • farms-api/farms-persistence/src/main/java/ca/bc/gov/farms/persistence/v1/dao/mybatis

1 file changed

+1
-1
lines changed

farms-api/farms-persistence/src/main/java/ca/bc/gov/farms/persistence/v1/dao/mybatis/ImportDaoImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public void insertImportVersion(ImportVersionDto dto) throws DaoException {
3030
logger.debug("<insertImportVersion");
3131

3232
try (CallableStatement callableStatement = this.conn
33-
.prepareCall("{ call farms_webapp_pkg.insert_import_version(?, ?, ?, ?, ?, ?, ?, ?) }")) {
33+
.prepareCall("call farms_webapp_pkg.insert_import_version(?, ?, ?, ?, ?, ?, ?, ?)")) {
3434
callableStatement.registerOutParameter(1, Types.NUMERIC);
3535
callableStatement.setString(2, dto.getImportClassCode());
3636
callableStatement.setString(3, dto.getImportStateCode());

0 commit comments

Comments
 (0)