summaryrefslogtreecommitdiffstats
path: root/einterfaces/ldap.go
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces/ldap.go')
-rw-r--r--einterfaces/ldap.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/einterfaces/ldap.go b/einterfaces/ldap.go
index 929911966..a69f9cbe1 100644
--- a/einterfaces/ldap.go
+++ b/einterfaces/ldap.go
@@ -20,13 +20,3 @@ type LdapInterface interface {
RunTest() *model.AppError
GetAllLdapUsers() ([]*model.User, *model.AppError)
}
-
-var theLdapInterface LdapInterface
-
-func RegisterLdapInterface(newInterface LdapInterface) {
- theLdapInterface = newInterface
-}
-
-func GetLdapInterface() LdapInterface {
- return theLdapInterface
-}