1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-01-03 13:45:20 +00:00

Chunker: remove unneeded return

This commit is contained in:
Alexander Neumann 2014-11-19 22:56:52 +01:00
parent 551c7525fe
commit d594cd89b7

View file

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