1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-03 20:38:39 -04:00

Make Decode*MessageSet functions private to the library

These don't need to be exposed and clutter the auto-generated
documentation
This commit is contained in:
2017-03-25 06:23:30 -04:00
parent 896bd55327
commit 27a88ca703
7 changed files with 12 additions and 12 deletions

View File

@ -227,7 +227,7 @@ func (r *SecurityList) UnmarshalXML(d *xml.Decoder, start xml.StartElement) erro
}
}
func DecodeSecuritiesMessageSet(d *xml.Decoder, start xml.StartElement) ([]Message, error) {
func decodeSecuritiesMessageSet(d *xml.Decoder, start xml.StartElement) ([]Message, error) {
var msgs []Message
for {
tok, err := nextNonWhitespaceToken(d)