Skip to content
Snippets Groups Projects
Commit c6d711ba authored by Christian Wulf's avatar Christian Wulf
Browse files

added default ctor for Dir2RecordsFilter

parent 0ef372c5
No related branches found
No related tags found
No related merge requests found
#FindBugs User Preferences
#Wed Feb 25 09:07:58 CET 2015
#Wed Mar 04 08:22:02 CET 2015
detector_threshold=3
effort=max
excludefilter0=.fbExcludeFilterFile|true
......
......@@ -53,6 +53,13 @@ public final class Dir2RecordsFilter extends CompositeStage {
private ClassNameRegistryRepository classNameRegistryRepository;
/**
* Default constructor using a new instance of {@link ClassNameRegistryRepository}
*/
public Dir2RecordsFilter() {
this(new ClassNameRegistryRepository());
}
public Dir2RecordsFilter(final ClassNameRegistryRepository classNameRegistryRepository) {
this.classNameRegistryRepository = classNameRegistryRepository;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment