From 0c72f60fbf77ad42f44e1973e5210aaf2c609a37 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Thu, 5 May 2016 22:51:14 +0200 Subject: [PATCH] Fix type parameter in javadoc in TestRepository.delete(String ref) Type parameter T extends AnyObjectId in signature of update(String, T) Change-Id: I9c13ddc572b8e94d5c7854f4de1f8206cb5e99ca Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/junit/TestRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java index d0045d698..07df56d3f 100644 --- a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java +++ b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java @@ -591,7 +591,7 @@ public T update(String ref, T obj) throws Exception { * * @param ref * the name of the reference to delete. This is normalized - * in the same way as {@link #update(String, T)}. + * in the same way as {@link #update(String, AnyObjectId)}. * @throws Exception * @since 4.4 */