summaryrefslogtreecommitdiffstats
path: root/einterfaces/saml.go
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces/saml.go')
-rw-r--r--einterfaces/saml.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/einterfaces/saml.go b/einterfaces/saml.go
index df9207d67..833a3d43f 100644
--- a/einterfaces/saml.go
+++ b/einterfaces/saml.go
@@ -13,13 +13,3 @@ type SamlInterface interface {
DoLogin(encodedXML string, relayState map[string]string) (*model.User, *model.AppError)
GetMetadata() (string, *model.AppError)
}
-
-var theSamlInterface SamlInterface
-
-func RegisterSamlInterface(newInterface SamlInterface) {
- theSamlInterface = newInterface
-}
-
-func GetSamlInterface() SamlInterface {
- return theSamlInterface
-}