From 79907aa5fceee5fe39472bf36dd8e526a31c900b Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Wed, 7 Apr 2021 11:50:26 -0700 Subject: [PATCH] Remove unused unexported const This is never used in the code, and not available publicly, so safe to remove. --- common.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/common.go b/common.go index f837a2654..6174339a8 100644 --- a/common.go +++ b/common.go @@ -2,8 +2,6 @@ package git import "strings" -const defaultDotGitPath = ".git" - // countLines returns the number of lines in a string à la git, this is // The newline character is assumed to be '\n'. The empty string // contains 0 lines. If the last line of the string doesn't end with a