aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2021-04-16 02:52:20 -0700
committerGitHub <noreply@github.com>2021-04-16 11:52:20 +0200
commit986e60ec9ce10643da1c39a66af8c14d9cac5173 (patch)
treeaff224aa3329fc75234fe5e089f9ee9cf2492784
parente616e9be056db3e66f365a831e7d282496ec674b (diff)
downloadgo-git-986e60ec9ce10643da1c39a66af8c14d9cac5173.tar.gz
*: remove unused unexported const (#286)
This is never used in the code, and not available publicly, so safe to remove.
-rw-r--r--common.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/common.go b/common.go
index f837a26..6174339 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