Only buffer file names, not full &FileInfo

This commit is contained in:
Jakob Borg
2014-12-30 09:31:34 +01:00
parent 34deb82aea
commit 2496185629
5 changed files with 68 additions and 82 deletions

View File

@@ -18,8 +18,6 @@ package model
import (
"fmt"
"time"
"github.com/syncthing/syncthing/internal/protocol"
)
type Scanner struct {
@@ -80,6 +78,6 @@ func (s *Scanner) String() string {
func (s *Scanner) Bump(string) {}
func (s *Scanner) Jobs() ([]protocol.FileInfoTruncated, []protocol.FileInfoTruncated) {
func (s *Scanner) Jobs() ([]string, []string) {
return nil, nil
}