aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/sql/Blob.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-11 18:49:51 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-10-11 18:49:51 +0000
commitafe6016980a9d8d8672042d53f926972a0af49c7 (patch)
tree5f8e4e09e41fddb2564b5726cad645fa7ddb6ef8 /libjava/java/sql/Blob.java
parenteb0043a05776bf4bbeb4c058246af15a75d36916 (diff)
downloadgcc-afe6016980a9d8d8672042d53f926972a0af49c7.zip
gcc-afe6016980a9d8d8672042d53f926972a0af49c7.tar.gz
gcc-afe6016980a9d8d8672042d53f926972a0af49c7.tar.bz2
Array.java, [...]: Removed redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * 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
Diffstat (limited to 'libjava/java/sql/Blob.java')
-rw-r--r--libjava/java/sql/Blob.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/java/sql/Blob.java b/libjava/java/sql/Blob.java
index 495fec1..070201b 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;
}