Restore default constructor

This commit is contained in:
jamesagnew 2018-04-28 15:04:39 -04:00
parent 5bd191d192
commit 770246583d
1 changed files with 10 additions and 0 deletions

View File

@ -57,6 +57,16 @@ public class JpaConformanceProviderDstu2 extends ServerConformanceProvider {
private IFhirSystemDao<Bundle, MetaDt> mySystemDao;
private SingleItemLoadingCache<Map<String, Long>> myResourceCountsCache;
/**
* Constructor
*/
@CoverageIgnore
public JpaConformanceProviderDstu2(){
super();
super.setCache(false);
setIncludeResourceCounts(true);
}
/**
* Constructor
*/