summaryrefslogtreecommitdiffstats
path: root/libjava/java/sql/Struct.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:49:51 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:49:51 +0000
commitcabab96a6f79bc5549b29def5b50432b4cc440ef (patch)
tree5f8e4e09e41fddb2564b5726cad645fa7ddb6ef8 /libjava/java/sql/Struct.java
parenta70e2f3341882b4d5ec11cde619e7135ee4f9626 (diff)
downloadppe42-gcc-cabab96a6f79bc5549b29def5b50432b4cc440ef.tar.gz
ppe42-gcc-cabab96a6f79bc5549b29def5b50432b4cc440ef.zip
2003-10-11 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: Removed redundant modifiers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72356 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/sql/Struct.java')
-rw-r--r--libjava/java/sql/Struct.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/sql/Struct.java b/libjava/java/sql/Struct.java
index beec072fa1d..861d7049e3b 100644
--- a/libjava/java/sql/Struct.java
+++ b/libjava/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;
}
OpenPOWER on IntegriCloud