Skip to content

Commit

Permalink
Fix unmatched partial method (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoonghyunCho authored and rookiejava committed Oct 6, 2021
1 parent 10289fc commit a2a8f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/View/ViewHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ partial void ConnectingHandler(NativeView? nativeView)
}
}

partial void DisconnectingHandler(NativeView? nativeView)
partial void DisconnectingHandler(NativeView nativeView)
{
if (nativeView == null)
return;
Expand Down

0 comments on commit a2a8f9d

Please sign in to comment.