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
This commit is contained in:
Michael Koch 2003-10-11 18:49:51 +00:00 committed by Michael Koch
parent eb0043a057
commit afe6016980
19 changed files with 724 additions and 702 deletions

View file

@ -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;
}