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

ru.makkarpov.scalingua.pofile.NewLinePrintWriter.scala Maven / Gradle / Ivy

The newest version!
package ru.makkarpov.scalingua.pofile

import java.io.{PrintWriter, Writer}

//uses system independent new lines
class NewLinePrintWriter(out: Writer, autoFlush: Boolean)
  extends PrintWriter(out, autoFlush) {
  def this(out: Writer) = this(out, false)

  override def println(): Unit = {
    print("\n")
    if (autoFlush) flush()
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy