Skip to content

Commit e622ae9

Browse files
[create-pull-request] automated change (#16592)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3591aa8 commit e622ae9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Controls/src/Core/Platform/GestureManager/GesturePlatformManager.Windows.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ void OnPointerReleased(object sender, PointerRoutedEventArgs e)
476476
{
477477
uint id = e.Pointer.PointerId;
478478
if (_fingers.Contains(id))
479-
_fingers.Remove(id);
479+
_fingers.Remove(id);
480480
SwipeComplete(true);
481481
PinchComplete(true);
482482
PanComplete(true);

src/Controls/tests/Xaml.UnitTests.ExternalAssembly/App.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
using Microsoft.Extensions.Logging;
99
using Microsoft.Maui.Graphics;
1010

11-
[assembly: Microsoft.Maui.Controls.XmlnsDefinition (
11+
[assembly: Microsoft.Maui.Controls.XmlnsDefinition(
1212
xmlNamespace: "http://example.com/maui-controls", clrNamespace: "Microsoft.Maui.Controls",
13-
AssemblyName="Microsoft.Maui.Controls")]
13+
AssemblyName = "Microsoft.Maui.Controls")]
1414

1515
namespace Microsoft.Maui.Controls.ControlGallery
1616
{

src/Controls/tests/Xaml.UnitTests/Issues/Maui13585.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
2-
using Microsoft.Maui.Graphics;
32
using Microsoft.Maui.ApplicationModel;
43
using Microsoft.Maui.Controls.Core.UnitTests;
54
using Microsoft.Maui.Devices;
5+
using Microsoft.Maui.Graphics;
66
using NUnit.Framework;
77

88

src/Graphics/src/Graphics/Font.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public bool Equals(IFont other)
4949
StyleType == other.StyleType &&
5050
Weight == other.Weight &&
5151
((Name is null && other.Name is null) || Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase));
52-
52+
5353
public override bool Equals(object obj)
5454
=> obj is IFont font && Equals(font);
5555

0 commit comments

Comments
 (0)