diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-18 11:34:31 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-18 13:19:07 +0100 |
commit | 6478577899b2df4df7275b8d0b1429d924b34b2a (patch) | |
tree | 3b07648592ded8128b7a6b3d3f4bdfd8e7966dd1 /org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java | |
parent | c281692c06ff0b5d3bcba77755e6aabfc45c5035 (diff) | |
download | jgit-6478577899b2df4df7275b8d0b1429d924b34b2a.tar.gz jgit-6478577899b2df4df7275b8d0b1429d924b34b2a.zip |
Fix javadoc in org.eclipse.jgit errors package
Change-Id: I46aa5c3073b99a311a1a97fc57d8f29d32524482
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java b/org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java index d1157c4e3d..f6aa092db4 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/errors/MissingObjectException.java @@ -100,7 +100,11 @@ public class MissingObjectException extends IOException { missing = null; } - /** @return the ObjectId that was not found. */ + /** + * Get the ObjectId that was not found + * + * @return the ObjectId that was not found + */ public ObjectId getObjectId() { return missing; } |