Skip to content

Commit

Permalink
fix: rename ASimpleCommand to SimpleCommand in order to adhere to dot…
Browse files Browse the repository at this point in the history
…net naming conventions
  • Loading branch information
Computerdores committed Apr 3, 2024
1 parent 1d8b342 commit 7b2adb0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores;

public abstract class ASimpleCommand {
public abstract class SimpleCommand {

public CommandResult Execute(string input, ITerminal terminal, out bool wantsMoreInput) {
wantsMoreInput = false;
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/AcessibleObjectCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores.Vanillin;

public class AccessibleObjectCommand : ASimpleCommand, ICommand {
public class AccessibleObjectCommand : SimpleCommand, ICommand {
private readonly string _name;

public AccessibleObjectCommand(string name) {
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/HelpCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores.Vanillin;

public class HelpCommand : ASimpleCommand, ICommand {
public class HelpCommand : SimpleCommand, ICommand {
public string GetName() => "help";

protected override CommandResult Execute(string input, ITerminal terminal) {
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/OtherCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores.Vanillin;

public class OtherCommand : ASimpleCommand, ICommand {
public class OtherCommand : SimpleCommand, ICommand {
public string GetName() => "other";

protected override CommandResult Execute(string input, ITerminal terminal) {
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/ScanCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores.Vanillin;

public class ScanCommand : ASimpleCommand, ICommand {
public class ScanCommand : SimpleCommand, ICommand {
public string GetName() => "scan";

protected override CommandResult Execute(string input, ITerminal terminal) {
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/SwitchCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Computerdores.Vanillin;

public class SwitchCommand : ASimpleCommand, ICommand, IPredictable {
public class SwitchCommand : SimpleCommand, ICommand, IPredictable {
public string GetName() => "switch";

public string PredictArguments(string partialArgumentsText) { // untested
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/ViewCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Computerdores.Vanillin;

public class ViewCommand : ASimpleCommand, ICommand, IPredictable {
public class ViewCommand : SimpleCommand, ICommand, IPredictable {
public string GetName() => "view";

public string PredictArguments(string partialArgumentsText) {
Expand Down
2 changes: 1 addition & 1 deletion AdvancedTerminalAPI/Vanillin/WelcomeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Computerdores.Vanillin;

public class WelcomeCommand : ASimpleCommand, ICommand {
public class WelcomeCommand : SimpleCommand, ICommand {
public string GetName() => "welcome";

protected override CommandResult Execute(string input, ITerminal terminal) {
Expand Down

0 comments on commit 7b2adb0

Please sign in to comment.