Mark static classes as static

This commit is contained in:
Jiří Polášek
2026-02-12 19:09:49 +01:00
parent 922c346ea6
commit 4faceef297
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ using Windows.System;
namespace Microsoft.CmdPal.Ext.WindowWalker.Components;
internal sealed class ContextMenuHelper
internal static class ContextMenuHelper
{
internal static List<CommandContextItem> GetContextMenuResults(in WindowWalkerListItem listItem)
{

View File

@@ -11,7 +11,7 @@ namespace Microsoft.CmdPal.Ext.WindowWalker.Components;
/// <summary>
/// Class containing methods to control the live preview
/// </summary>
internal sealed class LivePreview
internal static class LivePreview
{
/// <summary>
/// Makes sure that a window is excluded from the live preview

View File

@@ -6,7 +6,7 @@ using Microsoft.CommandPalette.Extensions.Toolkit;
namespace Microsoft.CmdPal.Ext.WindowWalker;
internal sealed class Icons
internal static class Icons
{
internal static IconInfo WindowWalkerIcon { get; } = IconHelpers.FromRelativePath("Assets\\WindowWalker.svg");