diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-03-18 08:56:27 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-03-18 08:56:27 +0000 |
commit | f3596fdc87874187e7a81644a8f749d5bfbd5970 (patch) | |
tree | 55164aeaa5f4d68c5e384eb66e9c6796afdc3310 /connectivity/com | |
parent | d38303ef85f3df5d30d68b78500c0f91dbc3adb6 (diff) |
INTEGRATION: CWS dba25 (1.4.6); FILE MERGED
2005/03/07 12:58:40 oj 1.4.6.1: isStreamElement now throws no exception anymore
Diffstat (limited to 'connectivity/com')
-rw-r--r-- | connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java b/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java index d177d38096d1..eb0393f62b04 100644 --- a/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java +++ b/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java @@ -2,9 +2,9 @@ * * $RCSfile: StorageFileAccess.java,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: vg $ $Date: 2005-02-16 15:48:29 $ + * last change: $Author: obo $ $Date: 2005-03-18 09:56:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,7 +94,7 @@ public class StorageFileAccess implements org.hsqldb.lib.FileAccess{ public void createParentDirs(java.lang.String filename) { } - public boolean isStreamElement(java.lang.String elementName) throws java.util.NoSuchElementException, java.io.IOException { + public boolean isStreamElement(java.lang.String elementName) { return isStreamElement(key,elementName); } @@ -135,7 +135,7 @@ public class StorageFileAccess implements org.hsqldb.lib.FileAccess{ return new FileSync((NativeOutputStreamHelper)os); } - static native boolean isStreamElement(java.lang.String key,java.lang.String elementName) throws java.util.NoSuchElementException, java.io.IOException; + static native boolean isStreamElement(java.lang.String key,java.lang.String elementName); static native void removeElement(java.lang.String key,java.lang.String filename) throws java.util.NoSuchElementException, java.io.IOException; static native void renameElement(java.lang.String key,java.lang.String oldName, java.lang.String newName) throws java.util.NoSuchElementException, java.io.IOException; } |