diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-10-12 16:38:16 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-10-12 16:38:16 +0000 |
| commit | 341ee2ac1dcd3920fe7f72617bb99c7132c796c4 (patch) | |
| tree | a79033c69133a38c9f4d26ecc311f23e09161b34 /java/sql/Driver.java | |
| parent | d1300a9be649f8dfe739c9a0cc2f634456bcb0b5 (diff) | |
| download | classpath-341ee2ac1dcd3920fe7f72617bb99c7132c796c4.tar.gz | |
2003-10-12 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,
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:
Removed redundant modifiers.
Diffstat (limited to 'java/sql/Driver.java')
| -rw-r--r-- | java/sql/Driver.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/java/sql/Driver.java b/java/sql/Driver.java index 5e5731d18..ebd026537 100644 --- a/java/sql/Driver.java +++ b/java/sql/Driver.java @@ -68,7 +68,7 @@ public interface Driver * connection, or <code>null</code> if the URL is not understood. * @exception SQLException If an error occurs. */ - public Connection connect(String url, Properties info) throws SQLException; + Connection connect(String url, Properties info) throws SQLException; /** * This method tests whether or not the driver believes it can connect to @@ -81,9 +81,9 @@ public interface Driver * <code>false</code> otherwise. * @exception SQLException If an error occurs. */ - public boolean acceptsURL(String url) throws SQLException; + boolean acceptsURL(String url) throws SQLException; - /** + /** * This method returns an array of possible properties that could be * used to connect to the specified database. * @@ -94,7 +94,7 @@ public interface Driver * database. This list may be empty. * @exception SQLException If an error occurs. */ - public DriverPropertyInfo[] getPropertyInfo(String url, Properties properties) + DriverPropertyInfo[] getPropertyInfo(String url, Properties properties) throws SQLException; /** @@ -102,14 +102,14 @@ public interface Driver * * @return The major version number of the driver. */ - public int getMajorVersion(); + int getMajorVersion(); /** * This method returns the minor version number of the driver. * * @return The minor version number of the driver. */ - public int getMinorVersion(); + int getMinorVersion(); /** * This method tests whether or not the driver is JDBC compliant. This @@ -119,5 +119,5 @@ public interface Driver * @return <code>true</code> if the driver has been certified JDBC compliant, * <code>false</code> otherwise. */ - public boolean jdbcCompliant(); + boolean jdbcCompliant(); } |
