Browse Source

Maintenance: Small code clean-up for lib/auth.rb.

Martin Gruner 2 years ago
parent
commit
ee3d49feef
1 changed files with 0 additions and 3 deletions
  1. 0 3
      lib/auth.rb

+ 0 - 3
lib/auth.rb

@@ -17,11 +17,8 @@ class Auth
   # @example
   #  auth = Auth.new('admin@example.com', 'some+password')
   def initialize(username, password)
-    @lookup_backend_instance = {}
-
     @auth_user = username.present? ? Auth::User.new(username) : nil
     @password = password
-
     @increase_login_failed_attempts = false
   end