aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/blame
diff options
context:
space:
mode:
authorKonrad Kügler <swamblumat-eclipsebugs@yahoo.de>2014-04-26 14:29:55 +0200
committerKonrad Kügler <swamblumat-eclipsebugs@yahoo.de>2014-04-26 14:31:47 +0200
commitca207b938dfca824986d60bcbe6f86b46d07cf97 (patch)
tree3c23eaf1f34d4ff336a06e5de1cd98c36589e828 /org.eclipse.jgit/src/org/eclipse/jgit/blame
parent8923e67a1680d3a5fd7766cdce90d07bae1a407a (diff)
downloadjgit-ca207b938dfca824986d60bcbe6f86b46d07cf97.tar.gz
jgit-ca207b938dfca824986d60bcbe6f86b46d07cf97.zip
Fix BlameResult.computeRange JavaDoc to exclude end index
Change-Id: Ifd7dd86e3848eb7a522ba5c49d5c216777484f3b Signed-off-by: Konrad Kügler <swamblumat-eclipsebugs@yahoo.de>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/blame')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/blame/BlameResult.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/blame/BlameResult.java b/org.eclipse.jgit/src/org/eclipse/jgit/blame/BlameResult.java
index faaa227b48..735eef7edc 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/blame/BlameResult.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/blame/BlameResult.java
@@ -280,9 +280,9 @@ public class BlameResult {
* Compute until the entire range has been populated.
*
* @param start
- * first index to examine.
+ * first index to examine (inclusive).
* @param end
- * last index to examine.
+ * end index (exclusive).
* @throws IOException
* the repository cannot be read.
*/