Skip to content

Commit

Permalink
fix errors after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkorynta committed Dec 16, 2024
1 parent 067b103 commit 500efb2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface DataTransaction extends AutoCloseable {
* for the connections they use.
* @param connectionType
* @return optional with the instance of the connection type, if available.
* @throws OpenDCSDataException any issues with the connection, if implementations check validity.
* @throws OpenDcsDataException any issues with the connection, if implementations check validity.
*/
<T> Optional<T> connection(Class<T> connectionType) throws OpenDcsDataException;

Expand Down
3 changes: 1 addition & 2 deletions java/opendcs/src/main/java/opendcs/dai/EnumDAI.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
* Data Access Interface for database-resident enumerations
* @author mmaloney Mike Maloney
*/
public interface EnumDAI
extends AutoCloseable
public interface EnumDAI extends DaiBase
{
@Deprecated
public DbEnum getEnum(String enumName) throws DbIoException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
import java.util.Optional;
import java.util.function.Supplier;

import javax.sql.DataSource;

import org.opendcs.database.api.DataTransaction;
import org.opendcs.database.api.OpenDcsDao;
import org.opendcs.database.api.OpenDcsDataException;
import org.opendcs.database.api.OpenDcsDatabase;
Expand Down

0 comments on commit 500efb2

Please sign in to comment.