backend/b2: remove unused largeUpload.clearUploadURL()

master
Lars Lehtonen 2020-03-16 07:39:45 -07:00 committed by Nick Craig-Wood
parent c227a90b52
commit a6a2eec392
1 changed files with 0 additions and 7 deletions

View File

@ -184,13 +184,6 @@ func (up *largeUpload) returnUploadURL(upload *api.GetUploadPartURLResponse) {
up.uploadMu.Unlock()
}
// clearUploadURL clears the current UploadURL and the AuthorizationToken
func (up *largeUpload) clearUploadURL() {
up.uploadMu.Lock()
up.uploads = nil
up.uploadMu.Unlock()
}
// Transfer a chunk
func (up *largeUpload) transferChunk(ctx context.Context, part int64, body []byte) error {
err := up.f.pacer.Call(func() (bool, error) {