Add missing @since tags for new API

Change-Id: I8db29a0313fbc476152cef47f2eaa76954f1e280
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2016-08-08 17:07:29 +02:00
parent d63eb16a1e
commit ae779f60b7
3 changed files with 10 additions and 1 deletions

View File

@ -45,6 +45,7 @@
/** /**
* LFS object. * LFS object.
* *
* @since 4.5
*/ */
public class LfsObject { public class LfsObject {
String oid; String oid;

View File

@ -99,11 +99,16 @@ public abstract class LfsProtocolServlet extends HttpServlet {
* @return the large file repository storing large files or null if the * @return the large file repository storing large files or null if the
* request is not supported. * request is not supported.
* @throws LfsException * @throws LfsException
* @since 4.5
*/ */
protected abstract LargeFileRepository getLargeFileRepository( protected abstract LargeFileRepository getLargeFileRepository(
LfsRequest request, String path) throws LfsException; LfsRequest request, String path) throws LfsException;
/** LFS request. */ /**
* LFS request.
*
* @since 4.5
*/
protected static class LfsRequest { protected static class LfsRequest {
private String operation; private String operation;

View File

@ -150,6 +150,9 @@ public RevFlag getReinterestingFlag() {
return REINTERESTING; return REINTERESTING;
} }
/**
* @since 4.5
*/
@Override @Override
public ObjectWalk toObjectWalkWithSameObjects() { public ObjectWalk toObjectWalkWithSameObjects() {
ObjectWalk ow = new ObjectWalk(reader, depth); ObjectWalk ow = new ObjectWalk(reader, depth);