Skip to content

Commit cafd02a

Browse files
niels9001Arlodotexe
authored andcommitted
Suppress CI warning
1 parent ae9ca0a commit cafd02a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

components/LayoutTransformControl/src/LayoutTransformControl.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ namespace CommunityToolkit.WinUI.Controls;
1414
/// Control that implements support for transformations as if applied by LayoutTransform.
1515
/// </summary>
1616
[ContentProperty(Name = "Child")]
17+
1718
public partial class LayoutTransformControl : Control
1819
{
1920
/// <summary>
@@ -29,9 +30,7 @@ public partial class LayoutTransformControl : Control
2930
/// <summary>
3031
/// List of property change event sources for events when properties of the Transform tree change
3132
/// </summary>
32-
private readonly Dictionary<Transform, List<PropertyChangeEventSource<double>>>
33-
_transformPropertyChangeEventSources = new Dictionary
34-
<Transform, List<PropertyChangeEventSource<double>>>();
33+
private readonly Dictionary<Transform, List<PropertyChangeEventSource<double>>> _transformPropertyChangeEventSources = new();
3534

3635
/// <summary>
3736
/// Host panel for Child element.
@@ -58,6 +57,7 @@ private readonly Dictionary<Transform, List<PropertyChangeEventSource<double>>>
5857
/// </summary>
5958
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
6059
#pragma warning disable CS8619 //
60+
#pragma warning disable CS1061 //
6161
public LayoutTransformControl()
6262
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
6363
{
@@ -461,4 +461,5 @@ private Size ComputeLargestTransformedSize(Size arrangeBounds)
461461
return computedSize;
462462
}
463463
#pragma warning restore CS8619
464+
#pragma warning restore CS1061
464465
}

0 commit comments

Comments
 (0)