From 52fa09c8d4c21e000df4c0f7291a182a2afb4157 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 15 Nov 2016 00:57:00 +0100 Subject: [PATCH] Add missing @since tags for new API Change-Id: Iaf83f66637d6a13e4a6d096ba8529553af7e30ed Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java | 1 + .../src/org/eclipse/jgit/util/io/IsolatedOutputStream.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java index cce021c0d..f39a680c7 100644 --- a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java +++ b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java @@ -184,6 +184,7 @@ static class Error { * error message * @throws IOException * on failure to send the response + * @since 4.6 */ protected static void sendError(HttpServletResponse rsp, int status, String message) throws IOException { diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/IsolatedOutputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/IsolatedOutputStream.java index cdc4a4d86..3598a7ba8 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/IsolatedOutputStream.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/IsolatedOutputStream.java @@ -71,6 +71,8 @@ * Every write (or flush) requires a context switch to another thread. Callers * should wrap this stream with {@code BufferedOutputStream} using a suitable * buffer size to amortize the cost of context switches. + * + * @since 4.6 */ public class IsolatedOutputStream extends OutputStream { private final OutputStream dst;