Do not export the scanner type

It is an internal specific to parse list responses.
This commit is contained in:
Julien Laffaye
2017-03-04 13:01:41 +01:00
parent 68918a8852
commit 602886c6b8
3 changed files with 11 additions and 11 deletions

View File

@@ -72,7 +72,7 @@ func parseLsListLine(line string) (*Entry, error) {
return nil, errUnsupportedListLine
}
scanner := NewScanner(line)
scanner := newScanner(line)
fields := scanner.NextFields(6)
if len(fields) < 6 {