From 341ee2ac1dcd3920fe7f72617bb99c7132c796c4 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sun, 12 Oct 2003 16:38:16 +0000 Subject: 2003-10-12 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, 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. --- java/sql/SQLData.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'java/sql/SQLData.java') diff --git a/java/sql/SQLData.java b/java/sql/SQLData.java index 1d1c205ec..7fa60be12 100644 --- a/java/sql/SQLData.java +++ b/java/sql/SQLData.java @@ -51,7 +51,7 @@ public interface SQLData * @return The user defined data type name for this object. * @exception SQLException If an error occurs. */ - public String getSQLTypeName() throws SQLException; + String getSQLTypeName() throws SQLException; /** * This method populates the data in the object from the specified stream. @@ -60,7 +60,7 @@ public interface SQLData * @param name The data type name of the data on the stream. * @exception SQLException If an error occurs. */ - public void readSQL(SQLInput stream, String typeName) throws SQLException; + void readSQL(SQLInput stream, String typeName) throws SQLException; /** * This method writes the data in this object to the specified stream. @@ -68,5 +68,5 @@ public interface SQLData * @param stream The stream to write the data to. * @exception SQLException If an error occurs. */ - public void writeSQL(SQLOutput stream) throws SQLException; + void writeSQL(SQLOutput stream) throws SQLException; } -- cgit v1.2.1