diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java index fd49e40c7..7b827b953 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java +++ b/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) { 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 a9f5c9bf6..0d283fde6 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. *

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