--- a/src/Pure/General/file.scala Sun Mar 24 16:12:45 2013 +0100
+++ b/src/Pure/General/file.scala Sun Mar 24 16:19:54 2013 +0100
@@ -137,14 +137,12 @@
new XZOutputStream(new BufferedOutputStream(s), options))
}
- def write_xz(file: JFile, text: CharSequence): Unit =
- write_xz(file, text, LZMA2Options.PRESET_DEFAULT)
+ def write_xz(file: JFile, text: CharSequence): Unit = write_xz(file, text, 3)
def write_xz(path: Path, text: CharSequence, preset: Int): Unit =
write_xz(path.file, text, preset)
- def write_xz(path: Path, text: CharSequence): Unit =
- write_xz(path.file, text, LZMA2Options.PRESET_DEFAULT)
+ def write_xz(path: Path, text: CharSequence): Unit = write_xz(path.file, text, 3)
/* copy */