summaryrefslogtreecommitdiff
path: root/connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java')
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java b/connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java
index 922e7111355a..24776f25c2f4 100644
--- a/connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java
+++ b/connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java
@@ -36,22 +36,27 @@ public class NativeOutputStreamHelper extends java.io.OutputStream{
out = new StorageNativeOutputStream(file,key);
}
+ @Override
public void write(byte[] b, int off, int len) throws java.io.IOException{
out.write(key,file,b, off, len);
}
+ @Override
public void write(byte[] b) throws java.io.IOException{
out.write(key,file,b);
}
+ @Override
public void close() throws java.io.IOException{
out.close(key,file);
}
+ @Override
public void write(int b) throws java.io.IOException{
out.write(key,file,b);
}
+ @Override
public void flush() throws java.io.IOException{
out.flush(key,file);
}