From cb66fdc98cd2c235d0299f87b23b2684890629d0 Mon Sep 17 00:00:00 2001 From: Brock Allen Date: Fri, 19 Jul 2013 01:44:59 -0400 Subject: [PATCH] remove more commented code --- src/BrockAllen.MembershipReboot/Accounts/UserAccountService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/BrockAllen.MembershipReboot/Accounts/UserAccountService.cs b/src/BrockAllen.MembershipReboot/Accounts/UserAccountService.cs index 9e1aecf7..1dfeb7eb 100644 --- a/src/BrockAllen.MembershipReboot/Accounts/UserAccountService.cs +++ b/src/BrockAllen.MembershipReboot/Accounts/UserAccountService.cs @@ -556,7 +556,6 @@ public virtual void SetPassword(string tenant, string username, string newPasswo if (String.IsNullOrWhiteSpace(username)) throw new ValidationException("Invalid username."); if (String.IsNullOrWhiteSpace(newPassword)) throw new ValidationException("Invalid newPassword."); - //ValidatePassword(tenant, username, newPassword); var account = this.GetByUsername(tenant, username); if (account == null) throw new ValidationException("Invalid username.");