diff options
author | Konrad Kügler <swamblumat-eclipsebugs@yahoo.de> | 2014-04-26 14:29:55 +0200 |
---|---|---|
committer | Konrad Kügler <swamblumat-eclipsebugs@yahoo.de> | 2014-04-26 14:31:47 +0200 |
commit | ca207b938dfca824986d60bcbe6f86b46d07cf97 (patch) | |
tree | 3c23eaf1f34d4ff336a06e5de1cd98c36589e828 /org.eclipse.jgit/src/org/eclipse/jgit/blame | |
parent | 8923e67a1680d3a5fd7766cdce90d07bae1a407a (diff) | |
download | jgit-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.java | 4 |
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. */ |