summaryrefslogtreecommitdiff
path: root/java/sql/Struct.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-12 16:38:16 +0000
committerMichael Koch <konqueror@gmx.de>2003-10-12 16:38:16 +0000
commit341ee2ac1dcd3920fe7f72617bb99c7132c796c4 (patch)
treea79033c69133a38c9f4d26ecc311f23e09161b34 /java/sql/Struct.java
parentd1300a9be649f8dfe739c9a0cc2f634456bcb0b5 (diff)
downloadclasspath-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/Struct.java')
-rw-r--r--java/sql/Struct.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/sql/Struct.java b/java/sql/Struct.java
index beec072fa..861d7049e 100644
--- a/java/sql/Struct.java
+++ b/java/sql/Struct.java
@@ -55,7 +55,7 @@ public interface Struct
* @return The SQL structured type name.
* @exception SQLException If an error occurs.
*/
- public String getSQLTypeName() throws SQLException;
+ String getSQLTypeName() throws SQLException;
/**
* This method returns the attributes of this SQL structured type.
@@ -63,7 +63,7 @@ public interface Struct
* @return The attributes of this structure type.
* @exception SQLException If an error occurs.
*/
- public Object[] getAttributes() throws SQLException;
+ Object[] getAttributes() throws SQLException;
/**
* This method returns the attributes of this SQL structured type.
@@ -73,5 +73,5 @@ public interface Struct
* @return The attributes of this structure type.
* @exception SQLException If a error occurs.
*/
- public Object[] getAttributes(Map map) throws SQLException;
+ Object[] getAttributes(Map map) throws SQLException;
}