(device protocol.DeviceID)
| 32 | } |
| 33 | |
| 34 | func (s *folderDB) CountNeed(device protocol.DeviceID) (db.Counts, error) { |
| 35 | if device == protocol.LocalDeviceID { |
| 36 | return s.needSizeLocal() |
| 37 | } |
| 38 | return s.needSizeRemote(device) |
| 39 | } |
| 40 | |
| 41 | func (s *folderDB) CountGlobal() (db.Counts, error) { |
| 42 | var res []countsRow |
nothing calls this directly
no test coverage detected