Skip to content

Commit

Permalink
Added default constructor (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakhiagr authored Feb 15, 2024
1 parent ea66f1a commit ccc1781
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ public EbeanLocalRelationshipQueryDAO(EbeanServer server, EBeanDAOConfig eBeanDA
_sqlGenerator = new MultiHopsTraversalSqlGenerator(SUPPORTED_CONDITIONS);
}

public EbeanLocalRelationshipQueryDAO(EbeanServer server) {
_server = server;
_eBeanDAOConfig = new EBeanDAOConfig();
_sqlGenerator = new MultiHopsTraversalSqlGenerator(SUPPORTED_CONDITIONS);
}

static final Map<Condition, String> SUPPORTED_CONDITIONS =
Collections.unmodifiableMap(new HashMap<Condition, String>() {
{
Expand Down

0 comments on commit ccc1781

Please sign in to comment.