mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-27 05:45:52 +00:00
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:
committed by
Michael Koch
parent
547f7f8b9d
commit
e1feb64f5d
@@ -50,31 +50,31 @@ public interface DataSource
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public Connection getConnection() throws SQLException;
|
||||
Connection getConnection() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public Connection getConnection(String username, String password)
|
||||
Connection getConnection(String username, 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user