aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java')
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java
index 9e61357da8..e46d703592 100644
--- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java
+++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/ShowCommands.java
@@ -26,7 +26,6 @@ class ShowCommands extends TextBuiltin {
@Option(name = "--pretty", metaVar = "metaVar_commandDetail", usage = "usage_alterTheDetailShown")
private Format pretty = Format.USAGE;
- /** {@inheritDoc} */
@Override
protected void run() throws Exception {
final CommandRef[] list = CommandCatalog.all();
@@ -51,7 +50,7 @@ class ShowCommands extends TextBuiltin {
}
enum Format {
- /** */
+ /** Get usage */
USAGE {
@Override
void print(ThrowingPrintWriter err, CommandRef c) throws IOException {
@@ -61,7 +60,7 @@ class ShowCommands extends TextBuiltin {
}
},
- /** */
+ /** Get implementation class name */
CLASSES {
@Override
void print(ThrowingPrintWriter err, CommandRef c) throws IOException {
@@ -69,7 +68,7 @@ class ShowCommands extends TextBuiltin {
}
},
- /** */
+ /** Get URL of implementation class */
URLS {
@Override
void print(ThrowingPrintWriter err, CommandRef c) throws IOException {