summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2016-11-15 00:57:00 +0100
committerDavid Pursehouse <david.pursehouse@gmail.com>2016-11-14 16:10:40 -0800
commit52fa09c8d4c21e000df4c0f7291a182a2afb4157 (patch)
tree8f3c3c54b025bac3aec9641b36bb53f8af55d19d
parent2685f4b1013a13902e53f4e854f4864c2f97e528 (diff)
downloadjgit-52fa09c8d4c21e000df4c0f7291a182a2afb4157.tar.gz
jgit-52fa09c8d4c21e000df4c0f7291a182a2afb4157.zip
Add missing @since tags for new API
Change-Id: Iaf83f66637d6a13e4a6d096ba8529553af7e30ed Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/fs/FileLfsServlet.java1
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/io/IsolatedOutputStream.java2
2 files changed, 3 insertions, 0 deletions
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 cce021c0d4..f39a680c7f 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 @@ public class FileLfsServlet extends HttpServlet {
* 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 cdc4a4d863..3598a7ba87 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 @@ import org.eclipse.jgit.internal.JGitText;
* 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;