We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8997e1c commit 2995cecCopy full SHA for 2995cec
src/main/scala/info.folone/scala.poi/impure/WorkbookImpure.scala
@@ -9,8 +9,8 @@ class WorkbookImpure(wb: Workbook) {
9
def save(path: String): Unit =
10
wb.safeToFile(path).fold(ex ⇒ throw ex, identity).unsafePerformIO
11
12
- def saveToStream(stream: OutputStream): Unit =
13
- safeToStream(stream).fold(ex ⇒ throw ex, identity).unsafePerformIO
+ def saveToStream(stream: java.io.OutputStream): Unit =
+ wb.safeToStream(stream).fold(ex ⇒ throw ex, identity).unsafePerformIO
14
15
def overwrite(path: String): Unit = {
16
new File(path).delete()
0 commit comments