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/TranslationStringMissingException.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/TranslationStringMissingException.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationStringMissingException.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationStringMissingException.java b/org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationStringMissingException.java index 05c38424ec..d30c1be082 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationStringMissingException.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationStringMissingException.java @@ -43,7 +43,6 @@ package org.eclipse.jgit.errors; import java.util.Locale; -import java.util.ResourceBundle; /** * This exception will be thrown when a translation string for a translation @@ -55,8 +54,9 @@ public class TranslationStringMissingException extends TranslationBundleExceptio private final String key; /** - * Construct a {@link TranslationStringMissingException} for the specified - * bundle class, locale and translation key + * Construct a + * {@link org.eclipse.jgit.errors.TranslationStringMissingException} for the + * specified bundle class, locale and translation key * * @param bundleClass * the bundle class for which a translation string was missing @@ -66,7 +66,7 @@ public class TranslationStringMissingException extends TranslationBundleExceptio * the key of the missing translation string * @param cause * the original exception thrown from the - * {@link ResourceBundle#getString(String)} method. + * {@link java.util.ResourceBundle#getString(String)} method. */ public TranslationStringMissingException(Class bundleClass, Locale locale, String key, Exception cause) { super("Translation missing for [" + bundleClass.getName() + ", " //$NON-NLS-1$ //$NON-NLS-2$ @@ -76,6 +76,8 @@ public class TranslationStringMissingException extends TranslationBundleExceptio } /** + * Get the key of the missing translation string + * * @return the key of the missing translation string */ public String getKey() { |