Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Jul 1, 2024
1 parent 820b78a commit d1c1ec0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public class NatService extends Service {

NatService(
final int p2pPort,
final Optional<Integer> p2pPortipv6,
final Optional<Integer> p2pPortIpv6,
final boolean isDiscoveryEnabled,
final Optional<NatManager> maybeNatManager) {
this.p2pPort = p2pPort;
this.p2pPortIpv6 = p2pPortipv6;
this.p2pPortIpv6 = p2pPortIpv6;
this.isDiscoveryEnabled = isDiscoveryEnabled;
this.maybeNatManager = maybeNatManager;
}
Expand Down

0 comments on commit d1c1ec0

Please sign in to comment.