1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00

Remove unused constant

This commit is contained in:
Ryooooooga 2021-08-16 23:21:46 +09:00
parent f96674b24b
commit a2f7fcd730
No known key found for this signature in database
GPG Key ID: 07CF200DFCC20C25
2 changed files with 0 additions and 4 deletions

View File

@ -8,8 +8,6 @@ import (
"github.com/jesseduffield/lazygit/pkg/utils"
)
const RENAME_SEPARATOR = " -> "
// GetStatusFiles git status files
type GetStatusFileOptions struct {
NoRenames bool

View File

@ -29,8 +29,6 @@ type IFile interface {
GetPath() string
}
const RENAME_SEPARATOR = " -> "
func (f *File) IsRename() bool {
return f.PreviousName != ""
}