Goimported the file so travis doesn't complain.

This commit is contained in:
Eric Volpert 2017-07-28 23:31:31 -04:00
parent 7aaa600c48
commit 332076d1a0

View File

@ -385,7 +385,6 @@ func (l bySize) Swap(i, j int) {
l.Items[i], l.Items[j] = l.Items[j], l.Items[i]
}
const directoryOffset = -1 << 31 // = math.MinInt32
func (l bySize) Less(i, j int) bool {
iSize, jSize := l.Items[i].Size, l.Items[j].Size
@ -398,7 +397,6 @@ func (l bySize) Less(i, j int) bool {
return iSize < jSize
}
// By Modified
func (l byModified) Len() int {
return len(l.Items)