File tree Expand file tree Collapse file tree
src/main/java/org/commoncrawl/whirlwind Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030import java .util .function .Consumer ;
3131import java .util .function .Predicate ;
3232
33- public class CdxFilterWithDynamicFiltering extends CdxWriter {
33+ public class CdxWriterWithDynamicFiltering extends CdxWriter {
3434 private static final DateTimeFormatter DATE_FORMAT = DateTimeFormatter .ofPattern ("yyyyMMddHHmmss" )
3535 .withZone (ZoneOffset .UTC );
3636
@@ -40,7 +40,7 @@ public class CdxFilterWithDynamicFiltering extends CdxWriter {
4040 private Consumer <String > warningHandler ;
4141 private Predicate <WarcRecord > recordFilter = null ;
4242
43- public CdxFilterWithDynamicFiltering (Writer writer ) {
43+ public CdxWriterWithDynamicFiltering (Writer writer ) {
4444 super (writer );
4545 this .writer = writer ;
4646 }
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public static void main(String[] args) throws IOException {
8181 }
8282
8383 try (InputStream in = Files .newInputStream (requested );
84- CdxFilterWithDynamicFiltering cdxjWriter = new CdxFilterWithDynamicFiltering (
84+ CdxWriterWithDynamicFiltering cdxjWriter = new CdxWriterWithDynamicFiltering (
8585 new OutputStreamWriter (System .out ));
8686 WarcReader reader = new WarcReader (in )) {
8787 reader .setLenient (true );
You can’t perform that action at this time.
0 commit comments