Skip to content

Commit

Permalink
Remove unused variables and fields
Browse files Browse the repository at this point in the history
These variables and fields are not used in the go-saml module
and being private they are not exported outside the module.

Signed-off-by: Andreas Jaggi <andreas.jaggi@waterwave.ch>
  • Loading branch information
x-way committed Oct 3, 2020
1 parent 227f64b commit 04162ae
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions internal/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"time"
)

var signaturePrefix = "ds"

type AuthnRequest struct {
XMLName xml.Name
SAMLP string `xml:"xmlns:samlp,attr"`
Expand All @@ -23,7 +21,6 @@ type AuthnRequest struct {
NameIDPolicy NameIDPolicy `xml:"NameIDPolicy"`
RequestedAuthnContext RequestedAuthnContext `xml:"RequestedAuthnContext"`
Signature *Signature `xml:"Signature,omitempty"`
originalString string
}

type Issuer struct {
Expand Down Expand Up @@ -219,7 +216,6 @@ type Response struct {
Issuer Issuer `xml:"Issuer"`
Status Status `xml:"Status"`
Assertion Assertion `xml:"Assertion"`
originalString string
}

type Assertion struct {
Expand Down

0 comments on commit 04162ae

Please sign in to comment.