From afcb3a8c9e9a245baceb671868923bb2500f77f6 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 31 May 2019 17:08:39 +0200 Subject: [PATCH] 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 --- org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9ebcf9fd0..659812450 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 { /** * Whether to use all tags (incl. lightweight) or not. */ - private boolean useTags = false; + private boolean useTags; /** * Constructor for DescribeCommand.