1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-01 11:48:38 -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

@ -122,7 +122,7 @@ func (air AcctInfoResponse) Valid() (bool, error) {
return true, nil
}
func DecodeSignupMessageSet(d *xml.Decoder, start xml.StartElement) ([]Message, error) {
func decodeSignupMessageSet(d *xml.Decoder, start xml.StartElement) ([]Message, error) {
var msgs []Message
for {
tok, err := nextNonWhitespaceToken(d)