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/SQLInput.java | 46 +++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'libjava/java/sql/SQLInput.java') diff --git a/libjava/java/sql/SQLInput.java b/libjava/java/sql/SQLInput.java index 6fcec1f..e15ae23 100644 --- a/libjava/java/sql/SQLInput.java +++ b/libjava/java/sql/SQLInput.java @@ -59,7 +59,7 @@ public interface SQLInput * @return The value read from the stream as a String. * @exception SQLException If an error occurs. */ - public String readString() throws SQLException; + String readString() throws SQLException; /** * This method reads the next item from the stream a Java @@ -68,7 +68,7 @@ public interface SQLInput * @return The value read from the stream as a boolean. * @exception SQLException If an error occurs. */ - public boolean readBoolean() throws SQLException; + boolean readBoolean() throws SQLException; /** * This method reads the next item from the stream a Java @@ -77,7 +77,7 @@ public interface SQLInput * @return The value read from the stream as a byte. * @exception SQLException If an error occurs. */ - public byte readByte() throws SQLException; + byte readByte() throws SQLException; /** * This method reads the next item from the stream a Java @@ -86,7 +86,7 @@ public interface SQLInput * @return The value read from the stream as a short. * @exception SQLException If an error occurs. */ - public short readShort() throws SQLException; + short readShort() throws SQLException; /** * This method reads the next item from the stream a Java @@ -95,7 +95,7 @@ public interface SQLInput * @return The value read from the stream as an int. * @exception SQLException If an error occurs. */ - public int readInt() throws SQLException; + int readInt() throws SQLException; /** * This method reads the next item from the stream a Java @@ -104,7 +104,7 @@ public interface SQLInput * @return The value read from the stream as a long. * @exception SQLException If an error occurs. */ - public long readLong() throws SQLException; + long readLong() throws SQLException; /** * This method reads the next item from the stream a Java @@ -113,7 +113,7 @@ public interface SQLInput * @return The value read from the stream as a float. * @exception SQLException If an error occurs. */ - public float readFloat() throws SQLException; + float readFloat() throws SQLException; /** * This method reads the next item from the stream a Java @@ -122,7 +122,7 @@ public interface SQLInput * @return The value read from the stream as a double. * @exception SQLException If an error occurs. */ - public double readDouble() throws SQLException; + double readDouble() throws SQLException; /** * This method reads the next item from the stream a Java @@ -131,7 +131,7 @@ public interface SQLInput * @return The value read from the stream as a BigDecimal. * @exception SQLException If an error occurs. */ - public BigDecimal readBigDecimal() throws SQLException; + BigDecimal readBigDecimal() throws SQLException; /** * This method reads the next item from the stream a Java @@ -140,7 +140,7 @@ public interface SQLInput * @return The value read from the stream as a byte array. * @exception SQLException If an error occurs. */ - public byte[] readBytes() throws SQLException; + byte[] readBytes() throws SQLException; /** * This method reads the next item from the stream a Java @@ -149,7 +149,7 @@ public interface SQLInput * @return The value read from the stream as a java.sql.Date. * @exception SQLException If an error occurs. */ - public Date readDate() throws SQLException; + Date readDate() throws SQLException; /** * This method reads the next item from the stream a Java @@ -158,7 +158,7 @@ public interface SQLInput * @return The value read from the stream as a java.sql.Time. * @exception SQLException If an error occurs. */ - public Time readTime() throws SQLException; + Time readTime() throws SQLException; /** * This method reads the next item from the stream a Java @@ -167,7 +167,7 @@ public interface SQLInput * @return The value read from the stream as a java.sql.Timestamp. * @exception SQLException If an error occurs. */ - public Timestamp readTimestamp() throws SQLException; + Timestamp readTimestamp() throws SQLException; /** * This method reads the next item from the stream a character @@ -176,7 +176,7 @@ public interface SQLInput * @return The value read from the stream as a Reader. * @exception SQLException If an error occurs. */ - public Reader readCharacterStream() throws SQLException; + Reader readCharacterStream() throws SQLException; /** * This method reads the next item from the stream a ASCII text @@ -185,7 +185,7 @@ public interface SQLInput * @return The value read from the stream as an InputStream. * @exception SQLException If an error occurs. */ - public InputStream readAsciiStream() throws SQLException; + InputStream readAsciiStream() throws SQLException; /** * This method reads the next item from the stream a binary @@ -194,7 +194,7 @@ public interface SQLInput * @return The value read from the stream as an InputStream. * @exception SQLException If an error occurs. */ - public InputStream readBinaryStream() throws SQLException; + InputStream readBinaryStream() throws SQLException; /** * This method reads the next item from the stream a Java @@ -203,7 +203,7 @@ public interface SQLInput * @return The value read from the stream as an Object. * @exception SQLException If an error occurs. */ - public Object readObject() throws SQLException; + Object readObject() throws SQLException; /** * This method reads the next item from the stream a Java SQL @@ -212,7 +212,7 @@ public interface SQLInput * @return The value read from the stream as an Ref. * @exception SQLException If an error occurs. */ - public Ref readRef() throws SQLException; + Ref readRef() throws SQLException; /** * This method reads the next item from the stream a Java SQL @@ -221,7 +221,7 @@ public interface SQLInput * @return The value read from the stream as a Blob. * @exception SQLException If an error occurs. */ - public Blob readBlob() throws SQLException; + Blob readBlob() throws SQLException; /** * This method reads the next item from the stream a Java SQL @@ -230,7 +230,7 @@ public interface SQLInput * @return The value read from the stream as a Clob. * @exception SQLException If an error occurs. */ - public Clob readClob() throws SQLException; + Clob readClob() throws SQLException; /** * This method reads the next item from the stream a Java SQL @@ -239,7 +239,7 @@ public interface SQLInput * @return The value read from the stream as an Array. * @exception SQLException If an error occurs. */ - public Array readArray() throws SQLException; + Array readArray() throws SQLException; /** * This method tests whether or not the last value read was a SQL @@ -249,11 +249,11 @@ public interface SQLInput * false otherwise. * @exception SQLException If an error occurs. */ - public boolean wasNull() throws SQLException; + boolean wasNull() throws SQLException; /** * @since 1.4 */ - public URL readURL() throws SQLException; + URL readURL() throws SQLException; } -- cgit v1.1