From 986e60ec9ce10643da1c39a66af8c14d9cac5173 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 16 Apr 2021 02:52:20 -0700 Subject: [PATCH] *: remove unused unexported const (#286) 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