diff --git a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LfsProtocolServlet.java b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LfsProtocolServlet.java index 394137cf6..7d2efd26c 100644 --- a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LfsProtocolServlet.java +++ b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LfsProtocolServlet.java @@ -67,7 +67,7 @@ import com.google.gson.GsonBuilder; /** * LFS protocol handler implementing the LFS batch API [1] * - * [1] https://github.com/github/git-lfs/blob/master/docs/api/http-v1-batch.md + * [1] https://github.com/github/git-lfs/blob/master/docs/api/v1/http-v1-batch.md * * @since 4.3 */ 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 8864af87a..586941357 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 @@ -161,7 +161,7 @@ public class FileLfsServlet extends HttpServlet { throws IOException { rsp.setStatus(status); // TODO return message in response body in json format as specified in - // https://github.com/github/git-lfs/blob/master/docs/api/http-v1-batch.md + // https://github.com/github/git-lfs/blob/master/docs/api/v1/http-v1-batch.md rsp.flushBuffer(); } } diff --git a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java index 3cadbf73a..d2464126c 100644 --- a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java +++ b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java @@ -102,7 +102,7 @@ public final class Constants { /** * Content type used by LFS REST API as defined in - * {@link "https://github.com/github/git-lfs/blob/master/docs/api/http-v1-batch.md"} + * {@link "https://github.com/github/git-lfs/blob/master/docs/api/v1/http-v1-batch.md"} */ public static String CONTENT_TYPE_GIT_LFS_JSON = "application/vnd.git-lfs+json"; @@ -111,4 +111,4 @@ public final class Constants { * {@link "https://www.ietf.org/rfc/rfc2046.txt"} */ public static String HDR_APPLICATION_OCTET_STREAM = "application/octet-stream"; -} \ No newline at end of file +}