Skip to content

Commit

Permalink
Remove unnecessary new. (#1410)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaanstra authored Dec 12, 2023
1 parent a18d1ee commit 440e357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cswinrt/strings/WinRT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ internal FactoryObjectReference(IntPtr thisPtr, IntPtr contextToken)
_contextToken = contextToken;
}

public static new unsafe FactoryObjectReference<T> FromAbi(IntPtr thisPtr)
public static unsafe FactoryObjectReference<T> FromAbi(IntPtr thisPtr)
{
if (thisPtr == IntPtr.Zero)
{
Expand Down

0 comments on commit 440e357

Please sign in to comment.