Sfoglia il codice sorgente

Fixed @since tags on new API

Change-Id: I77bc2ec486ffe4c8b864663d103d8cf39c3f35e1
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
tags/v4.1.0.201509280440-r
Andrey Loskutov 9 anni fa
parent
commit
b4ecb88367

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java Vedi File

@@ -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) {

+ 3
- 2
org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java Vedi File

@@ -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…
Annulla
Salva