All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.specs2.io.FileLinesContent.scala Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package org.specs2
package io

import java.io.File
import text._

/**
 * Default implementation for reading lines out of a file
 */
object FileLinesContent extends LinesContent[File] with FileReader {
  def lines(f: File): Seq[String] = if (f.isDirectory) Seq() else readLines(f.getPath)
  def name(f: File) = f.getPath
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy