Skip to content

Commit

Permalink
Update travis to Go 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jhillyerd committed Feb 12, 2017
1 parent 7d5925c commit e6b7c6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ script:
- $HOME/gopath/bin/goveralls -service=travis-ci

go:
- 1.7.3
- 1.7.5
- master
3 changes: 1 addition & 2 deletions quotedprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ func newQPCleaner(r io.ByteReader) *qpCleaner {
}
}

// Read method for io.Reader interface. Reasonably efficient for well-formed quoted-printable
// streams. Less so when invalid characters are encountered; reads will be short.
// Read method for io.Reader interface.
func (qp *qpCleaner) Read(dest []byte) (n int, err error) {
// Ensure room to write a byte or =XX string
destLen := len(dest) - 3
Expand Down

0 comments on commit e6b7c6f

Please sign in to comment.