Skip to content

Commit

Permalink
Fix Burp History Import
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed May 24, 2023
1 parent 5fbba2f commit 05a14f3
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -8,6 +8,7 @@
import com.nccgroup.loggerplusplus.logentry.LogEntry;

import javax.swing.*;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ThreadPoolExecutor;
Expand Down Expand Up @@ -86,8 +87,8 @@ public static class Builder {

private final LogProcessor logProcessor;
private ToolType originatingTool = ToolType.EXTENSIONS;
private List<ProxyHttpRequestResponse> proxyEntries;
private List<HttpRequestResponse> httpEntries;
private List<ProxyHttpRequestResponse> proxyEntries = new ArrayList<>();
private List<HttpRequestResponse> httpEntries = new ArrayList<>();
private Consumer<List<Integer>> interimConsumer;
private Runnable callback;
private boolean sendToAutoExporters = false;
Expand Down

0 comments on commit 05a14f3

Please sign in to comment.