MINOR: Remove redundant default parameter values in call to LogSegment.open (#9710)

Reviewers: Jun Rao <junrao@gmail.com>
This commit is contained in:
Kowshik Prakasam 2020-12-07 16:42:19 -08:00 committed by GitHub
parent 6f27bb02da
commit 1d84f54367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -770,9 +770,7 @@ class Log(@volatile private var _dir: File,
baseOffset = 0,
config,
time = time,
fileAlreadyExists = false,
initFileSize = this.initFileSize,
preallocate = false))
initFileSize = this.initFileSize))
}
0
}
@ -858,7 +856,6 @@ class Log(@volatile private var _dir: File,
baseOffset = logStartOffset,
config,
time = time,
fileAlreadyExists = false,
initFileSize = this.initFileSize,
preallocate = config.preallocate))
}
@ -2124,7 +2121,6 @@ class Log(@volatile private var _dir: File,
baseOffset = newOffset,
config = config,
time = time,
fileAlreadyExists = false,
initFileSize = initFileSize,
preallocate = config.preallocate))
updateLogEndOffset(newOffset)