Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
ardikars committed Aug 24, 2018
2 parents 20364be + 0336f3b commit a33fb94
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ public void onSuccess(Object value) {
Pcap pcap = pcapBuilder.build();
if (bpfBuilder != null) {
BpfProgram bpfProgram = bpfBuilder.pcap(pcap).build();
instance.context = ApplicationContext.newApplicationContext(applicationName, applicationVersion, argements, pcap, bpfProgram);
instance.context = ApplicationContext
.newApplicationContext(applicationName, applicationVersion, argements, pcap, bpfProgram);
} else {
instance.context = ApplicationContext.newApplicationContext(applicationName, applicationVersion, argements, pcap, null);
instance.context = ApplicationContext
.newApplicationContext(applicationName, applicationVersion, argements, pcap, null);
}
}

Expand Down

0 comments on commit a33fb94

Please sign in to comment.