Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
WeichenXu123 committed Jul 30, 2019
1 parent 4ce0d33 commit 9442948
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ abstract class FileScan(
* otherwise return `None`.
*/
def getFileUnSplittableReason(path: Path): Option[String] = {
if (!isSplitable(path)) Some("Undefined") else None
assert(!isSplitable(path))
Some("undefined")
}

override def description(): String = {
Expand Down

0 comments on commit 9442948

Please sign in to comment.