diff options
author | Jonathan Nieder <jrn@google.com> | 2017-01-24 10:16:19 -0800 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2017-01-24 14:41:24 -0800 |
commit | 061d24f6d557b7bdfdf530c7a50f66d7bf422c07 (patch) | |
tree | 91d5973259dcc09ca8b3f3ae9a1b1aacfe885540 /org.eclipse.jgit.pgm | |
parent | 8bec98cec089fa488f3903e97ee6493b727d7d21 (diff) | |
download | jgit-061d24f6d557b7bdfdf530c7a50f66d7bf422c07.tar.gz jgit-061d24f6d557b7bdfdf530c7a50f66d7bf422c07.zip |
Remove @since tags from internal packages
These packages don't use @since tags because they are not part of the
stable public API. Some @since tags snuck in, though. Remove them to
make the convention easier to find for new contributors and the
expectations clearer for users.
Change-Id: I6c17d3cfc93657f1b33cf5c5708f2b1c712b0d31
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r-- | org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java index 90c03e99b5..4842b98731 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/CLIText.java @@ -68,7 +68,6 @@ public class CLIText extends TranslationBundle { * @param line * the line to format * @return the formatted line - * @since 2.2 */ public static String formatLine(String line) { return MessageFormat.format(get().lineFormat, line); @@ -81,7 +80,6 @@ public class CLIText extends TranslationBundle { * @param message * the message to format * @return the formatted line - * @since 4.2 */ public static String fatalError(String message) { return MessageFormat.format(get().fatalError, message); |