From afe6016980a9d8d8672042d53f926972a0af49c7 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 18:49:51 +0000 Subject: Array.java, [...]: Removed redundant modifiers. 2003-10-11 Michael Koch * java/sql/Array.java, java/sql/Blob.java, java/sql/CallableStatement.java, java/sql/Clob.java, java/sql/Connection.java, java/sql/DatabaseMetaData.java, java/sql/Driver.java, java/sql/ParameterMetaData.java, java/sql/PreparedStatement.java, java/sql/Ref.java, java/sql/ResultSet.java, java/sql/ResultSetMetaData.java, java/sql/SQLData.java, java/sql/SQLInput.java, java/sql/SQLOutput.java, java/sql/Savepoint.java, java/sql/Statement.java, java/sql/Struct.java: Removed redundant modifiers. From-SVN: r72356 --- libjava/java/sql/Blob.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'libjava/java/sql/Blob.java') diff --git a/libjava/java/sql/Blob.java b/libjava/java/sql/Blob.java index 495fec10d04..070201bb89c 100644 --- a/libjava/java/sql/Blob.java +++ b/libjava/java/sql/Blob.java @@ -55,7 +55,7 @@ public interface Blob * @return The number of bytes in the BLOB. * @exception SQLException If an error occurs. */ - public long length() throws SQLException; + long length() throws SQLException; /** * This method returns up to the requested bytes of this BLOB as a @@ -66,7 +66,7 @@ public interface Blob * @return The requested bytes from the BLOB. * @exception SQLException If an error occurs. */ - public byte[] getBytes(long pos, int length) throws SQLException; + byte[] getBytes(long pos, int length) throws SQLException; /** * This method returns a stream that will read the bytes of the BLOB. @@ -74,7 +74,7 @@ public interface Blob * @return A stream that will read the bytes of the BLOB. * @exception SQLException If an error occurs. */ - public InputStream getBinaryStream() throws SQLException; + InputStream getBinaryStream() throws SQLException; /** * This method returns the index into the BLOB at which the first instance @@ -87,7 +87,7 @@ public interface Blob * pattern is not found. * @exception SQLException If an error occurs. */ - public long position(byte[] pattern, long start) throws SQLException; + long position(byte[] pattern, long start) throws SQLException; /** * This method returns the index into the BLOB at which the first instance @@ -102,30 +102,30 @@ public interface Blob * pattern is not found. * @exception SQLException If an error occurs. */ - public long position(Blob pattern, long start) throws SQLException; + long position(Blob pattern, long start) throws SQLException; /** * @exception SQLException If an error occurs. * @since 1.4 */ - public int setBytes(long pos, byte[] bytes) throws SQLException; + int setBytes(long pos, byte[] bytes) throws SQLException; /** * @exception SQLException If an error occurs. * @since 1.4 */ - public int setBytes(long pos, byte[] bytes, int offset, int len) + int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException; /** * @exception SQLException If an error occurs. * @since 1.4 */ - public OutputStream setBinaryStream(long pos) throws SQLException; + OutputStream setBinaryStream(long pos) throws SQLException; /** * @exception SQLException If an error occurs. * @since 1.4 */ - public void truncate(long len) throws SQLException; + void truncate(long len) throws SQLException; } -- cgit v1.2.3