1
mirror of https://github.com/rclone/rclone synced 2024-10-07 15:17:14 +02:00

build: fix problems found by the deadcode linter

This commit is contained in:
Nick Craig-Wood 2019-01-11 16:55:25 +00:00
parent c1d9a1e174
commit 6b3a9bf26a
5 changed files with 2 additions and 16 deletions

View File

@ -1104,12 +1104,6 @@ func (o *Object) readMetaData() (err error) {
return o.decodeMetaDataFromPropertiesResponse(blobProperties)
}
// timeString returns modTime as the number of milliseconds
// elapsed since January 1, 1970 UTC as a decimal string.
func timeString(modTime time.Time) string {
return strconv.FormatInt(modTime.UnixNano()/1E6, 10)
}
// parseTimeString converts a decimal string number of milliseconds
// elapsed since January 1, 1970 UTC into a time.Time and stores it in
// the modTime variable.

View File

@ -40,7 +40,7 @@ const (
maxSleep = 2 * time.Second
decayConstant = 2 // bigger for slower decay, exponential
defaultDevice = "Jotta"
defaultMountpoint = "Sync"
defaultMountpoint = "Sync" // nolint
rootURL = "https://www.jottacloud.com/jfs/"
apiURL = "https://api.jottacloud.com/files/v1/"
baseURL = "https://www.jottacloud.com/"

View File

@ -227,7 +227,7 @@ that the chunks will be buffered into memory.`,
Advanced: true,
}, {
Name: "drive_type",
Help: "The type of the drive ( personal | business | documentLibrary )",
Help: "The type of the drive ( " + driveTypePersonal + " | " + driveTypeBusiness + " | " + driveTypeSharepoint + " )",
Default: "",
Advanced: true,
}, {

View File

@ -23,8 +23,6 @@ import (
"github.com/ncw/rclone/fs"
)
const testBase = "github.com/ncw/rclone/"
// Control concurrency per backend if required
var (
oneOnlyMu sync.Mutex

View File

@ -27,12 +27,6 @@ import (
"github.com/ncw/rclone/lib/pacer"
)
type remoteConfig struct {
Name string
SubDir bool
FastList bool
}
var (
// Flags
maxTries = flag.Int("maxtries", 5, "Number of times to try each test")