Fixed @since tags on new API

Change-Id: I77bc2ec486ffe4c8b864663d103d8cf39c3f35e1
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
This commit is contained in:
Andrey Loskutov 2015-07-12 18:44:08 +02:00
parent d5a71e9ca3
commit b4ecb88367
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -375,8 +375,8 @@ public static List<String> readLines(final String s) {
/**
* 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 static List<String> readLines(final String s) {
* 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()) {