Ignore:
Timestamp:
2016-10-31T00:13:28+13:00 (7 years ago)
Author:
davidb
Message:

Explicity default constructors added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/hathitrust/solr-extracted-features/trunk/src/main/java/org/hathitrust/extractedfeatures/BasePerJSON.java

    r31002 r31003  
    1515    protected double            _progress_step;
    1616   
     17    public BasePerJSON()
     18    {
     19        _input_dir = null;
     20        _solr_url  = null;
     21        _output_dir = null;
     22        _verbosity  = 0;
     23       
     24        _progress_accum = null;
     25        _progress_step = 0.0;
     26    }
     27   
    1728    public BasePerJSON(String input_dir, String solr_url, String output_dir, int verbosity,
    1829                       DoubleAccumulator progress_accum, double progress_step)
Note: See TracChangeset for help on using the changeset viewer.