Projects STRLCPY LoggerPlusPlus Commits 05a14f3a
🤬
  • ■ ■ ■ ■ ■
    src/main/java/com/nccgroup/loggerplusplus/logview/processor/EntryImportWorker.java
    skipped 7 lines
    8 8  import com.nccgroup.loggerplusplus.logentry.LogEntry;
    9 9   
    10 10  import javax.swing.*;
     11 +import java.util.ArrayList;
    11 12  import java.util.List;
    12 13  import java.util.concurrent.CountDownLatch;
    13 14  import java.util.concurrent.ThreadPoolExecutor;
    skipped 72 lines
    86 87   
    87 88   private final LogProcessor logProcessor;
    88 89   private ToolType originatingTool = ToolType.EXTENSIONS;
    89  - private List<ProxyHttpRequestResponse> proxyEntries;
    90  - private List<HttpRequestResponse> httpEntries;
     90 + private List<ProxyHttpRequestResponse> proxyEntries = new ArrayList<>();
     91 + private List<HttpRequestResponse> httpEntries = new ArrayList<>();
    91 92   private Consumer<List<Integer>> interimConsumer;
    92 93   private Runnable callback;
    93 94   private boolean sendToAutoExporters = false;
    skipped 44 lines
Please wait...
Page is in error, reload to recover