stacycurl / pimpathon

Adds useful methods to scala & java classes.
Apache License 2.0
35 stars 9 forks source link

writeLines append missing trailing newline #170

Closed fommil closed 9 years ago

fommil commented 9 years ago
f.writeLines(List("hello"), append=true)
f.writeLines(List("world"), append=true)

gives "helloworld" instead of

hello
world

:cry: