fix 1.4 compatibility

This commit is contained in:
Anna.Kozlova
2016-12-30 17:06:07 +01:00
parent 62c28f024a
commit 7a4324874d
@@ -157,7 +157,7 @@ public class ComparisonFailureData {
try {
//noinspection SSBasedInspection
File tempFile = File.createTempFile(expectedOrActualPrefix, "");
OutputStream stream = new FileOutputStream(tempFile, false);
OutputStream stream = new FileOutputStream(tempFile);
try {
stream.write(text.getBytes("UTF-8"), 0, text.length());
}