Chunker: remove unneeded return

This commit is contained in:
Alexander Neumann 2014-11-19 22:56:52 +01:00
parent 551c7525fe
commit d594cd89b7
1 changed files with 0 additions and 2 deletions

View File

@ -218,8 +218,6 @@ func (c *chunker) Next() (*Chunk, error) {
c.pos += steps
c.bpos = c.bmax
}
return nil, nil
}
func (c *chunker) append(b byte) {