Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Jul 5, 2024
1 parent afa1a1c commit 4a1aeeb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion DragonFruit.Kaplan/PackageRemover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private async Task<int> RemovePackagesAsyncImpl(CancellationToken cancellation)
try
{
State = OperationState.Running;
#if !DEBUG
#if !DRY_RUN
var progress = new Progress<DeploymentProgress>(p => CurrentPackageRemovalProgress = p);
await _manager.RemovePackageAsync(_packages[i].Id.FullName, _mode).AsTask(cancellation, progress).ConfigureAwait(false);
#else
Expand Down
1 change: 0 additions & 1 deletion DragonFruit.Kaplan/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public MainWindowViewModel()
{
_packageManager = new PackageManager();
_currentUser = WindowsIdentity.GetCurrent();

_logger = App.GetLogger<MainWindowViewModel>();

AvailablePackageModes = _currentUser.User != null
Expand Down

0 comments on commit 4a1aeeb

Please sign in to comment.