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

remove dead code

This commit is contained in:
Florian Weingarten 2015-04-25 15:09:55 -04:00
parent 87a1946417
commit 20af78f25a

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