aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
diff options
context:
space:
mode:
authorAndrey Loskutov <loskutov@gmx.de>2015-07-12 18:44:08 +0200
committerAndrey Loskutov <loskutov@gmx.de>2015-07-12 18:44:08 +0200
commitb4ecb88367a00b0ed864c0f5a9ddb4d438c27879 (patch)
tree3ee65677f4c59c46585a79a275955f6676e11cc8 /org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
parentd5a71e9ca3d95330acdd858306c4f75ae0b01e58 (diff)
downloadjgit-b4ecb88367a00b0ed864c0f5a9ddb4d438c27879.tar.gz
jgit-b4ecb88367a00b0ed864c0f5a9ddb4d438c27879.zip
Fixed @since tags on new API
Change-Id: I77bc2ec486ffe4c8b864663d103d8cf39c3f35e1 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
index a9f5c9bf65..0d283fde63 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
@@ -375,8 +375,8 @@ public class IO {
/**
* Read the next line from a reader.
* <p>
- * Like {@link java.io.BufferedReader#readLine()}, but only treats {@code \n}
- * as end-of-line, and includes the trailing newline.
+ * Like {@link java.io.BufferedReader#readLine()}, but only treats
+ * {@code \n} as end-of-line, and includes the trailing newline.
*
* @param in
* the reader to read from.
@@ -386,6 +386,7 @@ public class IO {
* EOF was reached.
* @throws IOException
* there was an error reading from the stream.
+ * @since 4.1
*/
public static String readLine(Reader in, int sizeHint) throws IOException {
if (in.markSupported()) {