ConnectionEventListener.java, [...]: Removing redundant modifiers.

2003-10-11  Michael Koch  <konqueror@gmx.de>

	* 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:
	Removing redundant modifiers.

From-SVN: r72363
This commit is contained in:
Michael Koch 2003-10-11 19:10:36 +00:00 committed by Michael Koch
parent 547f7f8b9d
commit e1feb64f5d
13 changed files with 126 additions and 372 deletions

View file

@ -45,8 +45,5 @@ import java.sql.SQLException;
*/
public interface RowSetReader
{
/**
* @since 1.4
*/
public void readData(RowSetInternal caller) throws SQLException;
void readData(RowSetInternal caller) throws SQLException;
}