mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-27 22:05: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
@@ -49,20 +49,20 @@ public interface PooledConnection
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public Connection getConnection() throws SQLException;
|
||||
Connection getConnection() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void close() throws SQLException;
|
||||
void close() throws SQLException;
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void addConnectionEventListener(ConnectionEventListener listener);
|
||||
void addConnectionEventListener(ConnectionEventListener listener);
|
||||
|
||||
/**
|
||||
* @since 1.4
|
||||
*/
|
||||
public void removeConnectionEventListener(ConnectionEventListener listener);
|
||||
void removeConnectionEventListener(ConnectionEventListener listener);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user