Skip to content

Commit

Permalink
Clean up usings
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey85 committed Nov 16, 2023
1 parent cd3bb98 commit 7362132
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
2 changes: 0 additions & 2 deletions Pkmds.Web/Components/EditForms/Tabs/MainTab.razor.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using MudBlazor;

namespace Pkmds.Web.Components.EditForms.Tabs;

public partial class MainTab : IDisposable
Expand Down
3 changes: 0 additions & 3 deletions Pkmds.Web/Components/FileUploadDialog.razor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
using Microsoft.AspNetCore.Components.Forms;
using MudBlazor;

namespace Pkmds.Web.Components;

public partial class FileUploadDialog
Expand Down
5 changes: 1 addition & 4 deletions Pkmds.Web/Components/MarkingComponent.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,5 @@ public partial class MarkingComponent
_ => string.Empty,
}}";

private void Toggle()
{
Pokemon?.ToggleMarking((int)Shape);
}
private void Toggle() => Pokemon?.ToggleMarking((int)Shape);
}
2 changes: 2 additions & 0 deletions Pkmds.Web/GlobalUsings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
global using System.Text;
global using KristofferStrube.Blazor.FileSystemAccess;
global using Microsoft.AspNetCore.Components;
global using Microsoft.AspNetCore.Components.Forms;
global using MudBlazor;
global using MudBlazor.Services;
global using PKHeX.Core;
global using Pkmds.Web;
Expand Down

0 comments on commit 7362132

Please sign in to comment.