From f3596fdc87874187e7a81644a8f749d5bfbd5970 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 18 Mar 2005 08:56:27 +0000 Subject: 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 --- .../com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'connectivity/com') 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; } -- cgit