diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-10-12 16:38:16 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-10-12 16:38:16 +0000 |
| commit | 341ee2ac1dcd3920fe7f72617bb99c7132c796c4 (patch) | |
| tree | a79033c69133a38c9f4d26ecc311f23e09161b34 /java/sql/Clob.java | |
| parent | d1300a9be649f8dfe739c9a0cc2f634456bcb0b5 (diff) | |
| download | classpath-341ee2ac1dcd3920fe7f72617bb99c7132c796c4.tar.gz | |
2003-10-12 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,
javax/sql/ConnectionEventListener.java,
javax/sql/ConnectionPoolDataSource.java,
javax/sql/DataSource.java,
javax/sql/PooledConnection.java,
javax/sql/RowSet.java,
javax/sql/RowSetInternal.java,
javax/sql/RowSetListener.java,
javax/sql/RowSetMetaData.java,
javax/sql/RowSetReader.java,
javax/sql/RowSetWriter.java,
javax/sql/XAConnection.java,
javax/sql/XADataSource.java:
Removed redundant modifiers.
Diffstat (limited to 'java/sql/Clob.java')
| -rw-r--r-- | java/sql/Clob.java | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/java/sql/Clob.java b/java/sql/Clob.java index a25651255..f764f5cfc 100644 --- a/java/sql/Clob.java +++ b/java/sql/Clob.java @@ -57,7 +57,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long length() throws SQLException; + long length() throws SQLException; /** * This method returns the specified portion of the CLOB as a @@ -70,7 +70,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public String getSubString(long pos, int length) throws SQLException; + String getSubString(long pos, int length) throws SQLException; /** * This method returns a character stream that reads the contents of the @@ -80,7 +80,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public Reader getCharacterStream() throws SQLException; + Reader getCharacterStream() throws SQLException; /** * This method returns a byte stream that reads the contents of the @@ -90,7 +90,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public InputStream getAsciiStream() throws SQLException; + InputStream getAsciiStream() throws SQLException; /** * This method returns the index into the CLOB of the first occurrence of @@ -106,7 +106,7 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long position(String searchstr, long start) throws SQLException; + long position(String searchstr, long start) throws SQLException; /** * This method returns the index into the CLOB of the first occurrence of @@ -122,31 +122,31 @@ public interface Clob * @exception SQLException If an error occurs. * @since 1.2 */ - public long position(Clob searchstr, long start) throws SQLException; + long position(Clob searchstr, long start) throws SQLException; /** * @since 1.4 */ - public int setString(long pos, String str) throws SQLException; + int setString(long pos, String str) throws SQLException; /** * @since 1.4 */ - public int setString(long pos, String str, int offset, int len) + int setString(long pos, String str, int offset, int len) throws SQLException; /** * @since 1.4 */ - public OutputStream setAsciiStream(long pos) throws SQLException; + OutputStream setAsciiStream(long pos) throws SQLException; /** * @since 1.4 */ - public Writer setCharacterStream(long pos) throws SQLException; + Writer setCharacterStream(long pos) throws SQLException; /** * @since 1.4 */ - public void truncate(long len) throws SQLException; + void truncate(long len) throws SQLException; } |
