diff options
Diffstat (limited to 'libjava/classpath/java/sql/SQLInput.java')
-rw-r--r-- | libjava/classpath/java/sql/SQLInput.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libjava/classpath/java/sql/SQLInput.java b/libjava/classpath/java/sql/SQLInput.java index 730627d9a9e..e277a5020cf 100644 --- a/libjava/classpath/java/sql/SQLInput.java +++ b/libjava/classpath/java/sql/SQLInput.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -50,7 +50,7 @@ import java.net.URL; * * @author Aaron M. Renn (arenn@urbanophile.com) */ -public interface SQLInput +public interface SQLInput { /** * This method reads the next item from the stream a Java @@ -137,7 +137,7 @@ public interface SQLInput * This method reads the next item from the stream a Java * byte array * - * @return The value read from the stream as a byte array. + * @return The value read from the stream as a byte array. * @exception SQLException If an error occurs. */ byte[] readBytes() throws SQLException; @@ -256,4 +256,3 @@ public interface SQLInput */ URL readURL() throws SQLException; } - |