diff options
author | Ivan Frade <ifrade@google.com> | 2019-05-23 10:39:31 -0700 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2019-05-27 10:38:37 +0900 |
commit | 82316fc23a31787e80feaf5530e440d311d60b0b (patch) | |
tree | 8a23dc9446e508a554ef31a1b60cb4f03654c42f /org.eclipse.jgit | |
parent | e57a37e76782356eb5a93a71c6288e64fe03e5f1 (diff) | |
download | jgit-82316fc23a31787e80feaf5530e440d311d60b0b.tar.gz jgit-82316fc23a31787e80feaf5530e440d311d60b0b.zip |
BitmapCalculator: javadoc fixes
Fill out the description of when IOException is thrown.
Also fix a typo in the description for IncorrectObjectTypeException.
Change-Id: I9fafd19d68ddc4fe4e95e8516c2c38484b941a3a
Signed-off-by: Ivan Frade <ifrade@google.com>
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmapCalculator.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmapCalculator.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmapCalculator.java index a463831609..14e95670aa 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmapCalculator.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmapCalculator.java @@ -94,8 +94,9 @@ class BitmapCalculator { * @throws MissingObjectException * the supplied id doesn't exist * @throws IncorrectObjectTypeException - * the supplied id doens't refer to a commit or a tag + * the supplied id doesn't refer to a commit or a tag * @throws IOException + * if the walk cannot open a packfile or loose object */ BitmapBuilder getBitmap(RevCommit start, ProgressMonitor pm) throws MissingObjectException, |