Skip to content

Commit

Permalink
undo null check
Browse files Browse the repository at this point in the history
  • Loading branch information
LSJoranVC committed Nov 29, 2023
1 parent e8bbef8 commit 3444ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SharpPcap/LibPcap/NativeLibraryHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static void SetDllImportResolver(Assembly assembly, DllImportResolver res
null
);

setDllImportResolverMethod?.Invoke(null, new object[] {
setDllImportResolverMethod.Invoke(null, new object[] {
assembly,
Delegate.CreateDelegate(dllImportResolverType, resolver, "Invoke")
});
Expand Down

0 comments on commit 3444ec2

Please sign in to comment.