Skip to content

Commit

Permalink
Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Jul 19, 2015
1 parent f6d127e commit 99df867
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions modules/dbsupport/src/main/java/org/jpos/ee/DB.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,20 @@ private static class HibernateResourceHolder
false);
}

public DB()
{
/**
* Creates DB Object using default Hibernate instance
*/
public DB() {
super();
}

/**
* Creates DB Object using default Hibernate instance
* @param log Log object
*/
public DB(Log log)
{
super();
setLog(log);
}

Expand Down

0 comments on commit 99df867

Please # to comment.