From afe6016980a9d8d8672042d53f926972a0af49c7 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 18:49:51 +0000 Subject: Array.java, [...]: Removed redundant modifiers. 2003-10-11 Michael Koch * 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. From-SVN: r72356 --- libjava/java/sql/Struct.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libjava/java/sql/Struct.java') diff --git a/libjava/java/sql/Struct.java b/libjava/java/sql/Struct.java index beec072..861d704 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; } -- cgit v1.1