Browse Source

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 years ago
parent
commit
b4ecb88367

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

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

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

/** /**
* Read the next line from a reader. * Read the next line from a reader.
* <p> * <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 * @param in
* the reader to read from. * the reader to read from.
* EOF was reached. * EOF was reached.
* @throws IOException * @throws IOException
* there was an error reading from the stream. * there was an error reading from the stream.
* @since 4.1
*/ */
public static String readLine(Reader in, int sizeHint) throws IOException { public static String readLine(Reader in, int sizeHint) throws IOException {
if (in.markSupported()) { if (in.markSupported()) {

Loading…
Cancel
Save