Skip to content

Commit 05d9026

Browse files
authored
Merge pull request #336 from domaframework/issue-332-3
Declare a default constructor for Quarkus
2 parents db5da10 + 0b07ee1 commit 05d9026

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/org/seasar/doma/internal/jdbc/dao/AbstractDao.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ public abstract class AbstractDao implements ConfigProvider {
1919

2020
protected final Config __config;
2121

22+
protected AbstractDao() {
23+
__config = null;
24+
}
25+
2226
protected AbstractDao(Config config) {
2327
if (config == null) {
2428
throw new DomaNullPointerException("config");

0 commit comments

Comments
 (0)