diff options
author | Sebastian Schuberth <sschuberth@gmail.com> | 2019-05-31 17:08:39 +0200 |
---|---|---|
committer | Sebastian Schuberth <sschuberth@gmail.com> | 2019-05-31 17:08:39 +0200 |
commit | afcb3a8c9e9a245baceb671868923bb2500f77f6 (patch) | |
tree | 6810b262eea4bf22f60e3ef80e7727222ee410c2 /org.eclipse.jgit/src/org/eclipse | |
parent | 22352e47516546c1484bf912b8499e88a119b1e7 (diff) | |
download | jgit-afcb3a8c9e9a245baceb671868923bb2500f77f6.tar.gz jgit-afcb3a8c9e9a245baceb671868923bb2500f77f6.zip |
DescribeCommand: Consistenly omit the default value
Omit the default value of "false" for "useTags" like already done for
"longDesc".
Change-Id: I25aaacae028fc8cf27f4040ba45fe79609318aa1
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java index 9ebcf9fd0f..659812450a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java @@ -109,7 +109,7 @@ public class DescribeCommand extends GitCommand<String> { /** * Whether to use all tags (incl. lightweight) or not. */ - private boolean useTags = false; + private boolean useTags; /** * Constructor for DescribeCommand. |