From 223ae550f94f440b64c5e5d9752b53590161d993 Mon Sep 17 00:00:00 2001 From: Walker Randolph Smith Date: Fri, 8 Jan 2021 13:04:27 -0500 Subject: [PATCH] Update ChainOfResponsibility.cs Remove a redundant call to `Run` --- ChainOfResponsability/src/ChainOfResponsibility.cs | 1 - 1 file changed, 1 deletion(-) 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); } }