2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 10:00:48 +00:00

Merge pull request #140 from fw42/remove_dead_code

remove dead code
This commit is contained in:
Alexander Neumann 2015-04-26 12:03:16 +02:00
commit 871c817f66

View File

@ -86,16 +86,6 @@ func (p *Progress) Report(s Stat) {
}
}
// Report a file with the given size.
func (p *Progress) ReportFile(size uint64) {
p.Report(Stat{Files: 1, Bytes: size})
}
// Report a directory.
func (p *Progress) ReportDir() {
p.Report(Stat{Dirs: 1})
}
func (p *Progress) reporter() {
if p == nil {
return
@ -157,15 +147,6 @@ func (p *Progress) Done() {
}
}
// Current returns the current stat value.
func (p *Progress) Current() Stat {
p.curM.Lock()
s := p.cur
p.curM.Unlock()
return s
}
// Add accumulates other into s.
func (s *Stat) Add(other Stat) {
s.Bytes += other.Bytes