File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/scala/org/dbpedia/extraction/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ object IOUtils {
5555 * open output stream, wrap in zipper stream if file suffix indicates compressed file,
5656 * wrap in writer.
5757 */
58- def writer (file : FileLike [_], charset : Charset = Codec .UTF8 .charSet ): Writer =
58+ def writer (file : FileLike [_], charset : Charset = Codec .UTF8 ): Writer =
5959 new OutputStreamWriter (outputStream(file), charset)
6060
6161 /**
6262 * open input stream, wrap in unzipper stream if file suffix indicates compressed file,
6363 * wrap in reader.
6464 */
65- def reader (file : FileLike [_], charset : Charset = Codec .UTF8 .charSet ): Reader =
65+ def reader (file : FileLike [_], charset : Charset = Codec .UTF8 ): Reader =
6666 new InputStreamReader (inputStream(file), charset)
6767
6868 def readLines (file : FileLike [_])(proc : String => Unit ): Unit = {
You can’t perform that action at this time.
0 commit comments