chore(git-provider): Code style

This commit is contained in:
Scott 2026-08-25 13:37:47 +10:00
commit 9eb58698fa
4 changed files with 2 additions and 10 deletions

View file

@ -1,6 +1,4 @@
using System; using System;
using System.Diagnostics;
using System.IO;
using System.Management.Automation; using System.Management.Automation;
using ModuleCore.Git; using ModuleCore.Git;

View file

@ -1,5 +1,4 @@
using System; using System.Management.Automation;
using System.Management.Automation;
using ModuleCore.Git; using ModuleCore.Git;
namespace PowershellModule.Git.Commands; namespace PowershellModule.Git.Commands;

View file

@ -10,10 +10,6 @@ public class GitProvider : NavigationCmdletProvider
{ {
public const string Name = "GitRepo"; public const string Name = "GitRepo";
public GitProvider()
{
}
protected override PSDriveInfo NewDrive(PSDriveInfo drive) protected override PSDriveInfo NewDrive(PSDriveInfo drive)
{ {
// This is a bit of a hack to ensure that no drive is registered with a root location. // This is a bit of a hack to ensure that no drive is registered with a root location.
@ -81,6 +77,6 @@ public class GitProvider : NavigationCmdletProvider
protected override bool IsValidPath(string path) protected override bool IsValidPath(string path)
{ {
throw new System.NotImplementedException(); throw new NotImplementedException();
} }
} }

View file

@ -7,6 +7,5 @@ public class GitPsDriveInfo : PSDriveInfo
protected GitPsDriveInfo(PSDriveInfo driveInfo) protected GitPsDriveInfo(PSDriveInfo driveInfo)
: base(driveInfo) : base(driveInfo)
{ {
} }
} }