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:
parent
547f7f8b9d
commit
e1feb64f5d
13 changed files with 126 additions and 372 deletions
|
@ -49,31 +49,31 @@ public interface ConnectionPoolDataSource
|
|||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public PooledConnection getPooledConnection() throws SQLException;
|
||||
PooledConnection getPooledConnection() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public PooledConnection getPooledConnection(String user, String password)
|
||||
PooledConnection getPooledConnection(String user, String password)
|
||||
throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public PrintWriter getLogWriter() throws SQLException;
|
||||
PrintWriter getLogWriter() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void setLogWriter(PrintWriter out) throws SQLException;
|
||||
void setLogWriter(PrintWriter out) throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void setLoginTimeout(int seconds) throws SQLException;
|
||||
void setLoginTimeout(int seconds) throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public int getLoginTimeout() throws SQLException;
|
||||
int getLoginTimeout() throws SQLException;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue