Skip to content

Commit

Permalink
Remove extra pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
mabeyj committed May 26, 2017
1 parent d9cfdd1 commit 22f6371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (m *EntityDescriptor) UnmarshalXML(d *xml.Decoder, start xml.StartElement)
}{
Alias: (*Alias)(m),
}
if err := d.DecodeElement(&aux, &start); err != nil {
if err := d.DecodeElement(aux, &start); err != nil {
return err
}
m.ValidUntil = time.Time(aux.ValidUntil)
Expand Down

0 comments on commit 22f6371

Please sign in to comment.