Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
Formatting fix
  • Loading branch information
prasha2 committed Oct 16, 2019
1 parent c67bcf3 commit 840f1ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private[spark] object InputFileBlockHolder {
def set(filePath: String, startOffset: Long, length: Long): Unit = {
require(filePath != null, "filePath cannot be null")
require(startOffset >= 0, s"startOffset ($startOffset) cannot be negative")
require(length >= -1, s"length ($length) cannot be smaller than -1")
require(length >= -1, s"length ($length) cannot be smaller than -1")
inputBlock.get().set(new FileBlock(UTF8String.fromString(filePath), startOffset, length))
}

Expand Down

0 comments on commit 840f1ce

Please sign in to comment.