]> source.dussan.org Git - jgit.git/commitdiff
Fixed @since tags on new API 01/51801/1
authorAndrey Loskutov <loskutov@gmx.de>
Sun, 12 Jul 2015 16:44:08 +0000 (18:44 +0200)
committerAndrey Loskutov <loskutov@gmx.de>
Sun, 12 Jul 2015 16:44:08 +0000 (18:44 +0200)
Change-Id: I77bc2ec486ffe4c8b864663d103d8cf39c3f35e1
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java
org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java

index fd49e40c76615a0bcb4a1480961c2f57f3ec602c..7b827b95353f31d6856c0dca8967a250a0d6bd58 100644 (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) {
index a9f5c9bf65c8d6e63cb3c54a862e49e43e72b4bb..0d283fde6365bcf5d271b342b69f92c1f4bd2e3c 100644 (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()) {