Skip to content

Commit e7d79b0

Browse files
committed
chore: Avoid API diff
1 parent 9fb6b4f commit e7d79b0

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/Uno.UI/UI/Xaml/Media/Projection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ internal UIElement Owner
4343
/// <summary>
4444
/// Raises the Changed event.
4545
/// </summary>
46-
protected void OnPropertyChanged()
46+
private protected void OnPropertyChanged()
4747
{
4848
Changed?.Invoke(this, EventArgs.Empty);
4949
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Microsoft.UI.Xaml.Media;
2+
3+
public partial class Projection
4+
{
5+
private protected void OnPropertyChanged()
6+
{
7+
}
8+
}

0 commit comments

Comments
 (0)