diff --git a/ChainOfResponsability/src/ChainOfResponsibility.cs b/ChainOfResponsability/src/ChainOfResponsibility.cs index 70268cc..2b25fe9 100644 --- a/ChainOfResponsability/src/ChainOfResponsibility.cs +++ b/ChainOfResponsability/src/ChainOfResponsibility.cs @@ -79,7 +79,6 @@ public static bool Run(LoginRequest request) rule .SetNext(new ActiveDirectory()) .SetNext(new CredentialsCheck()) - .Run(request); return rule.Run(request); } }