Kaydet (Commit) ca27812e authored tarafından Caolán McNamara's avatar Caolán McNamara

logic inverted

thanks to noelg for noticing

Change-Id: I0e8bdb1e10bc8341b4f38d93c08ff77ea9aadf9b
üst 137c440c
...@@ -85,7 +85,7 @@ public class _XOutputStream extends MultiMethodTest { ...@@ -85,7 +85,7 @@ public class _XOutputStream extends MultiMethodTest {
byte[][] readData = new byte[1][data.length]; byte[][] readData = new byte[1][data.length];
XInputStream xInStream = checker.getInStream(); XInputStream xInStream = checker.getInStream();
if (xInStream == null) { if (xInStream != null) {
try { try {
xInStream.readBytes(readData, data.length); xInStream.readBytes(readData, data.length);
} catch(com.sun.star.io.IOException e) { } catch(com.sun.star.io.IOException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment