]> source.dussan.org Git - jgit.git/commitdiff
DescribeCommand: Consistenly omit the default value 32/143132/1
authorSebastian Schuberth <sschuberth@gmail.com>
Fri, 31 May 2019 15:08:39 +0000 (17:08 +0200)
committerSebastian Schuberth <sschuberth@gmail.com>
Fri, 31 May 2019 15:08:39 +0000 (17:08 +0200)
Omit the default value of "false" for "useTags" like already done for
"longDesc".

Change-Id: I25aaacae028fc8cf27f4040ba45fe79609318aa1
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java

index 9ebcf9fd0f5788c47b08ab8b7c62fd5ba8a89652..659812450a2a18b534a215cc5b7e7421cbb4d9ff 100644 (file)
@@ -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.