Browse Source

Fixed @since tags on new API

Change-Id: I77bc2ec486ffe4c8b864663d103d8cf39c3f35e1
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
stable-4.1
Andrey Loskutov 9 years ago
parent
commit
b4ecb88367
  1. 1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java
  2. 5
      org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java

1
org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java

@ -193,6 +193,7 @@ public class PushCertificateParser {
* destination repository for the push.
* @param cfg
* configuration for signed push.
* @since 4.1
*/
public PushCertificateParser(Repository into, SignedPushConfig cfg) {
if (cfg != null) {

5
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()) {

Loading…
Cancel
Save