1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

remove sentinel errors

This commit is contained in:
Jesse Duffield
2021-04-03 19:35:37 +11:00
parent 0898a7bb57
commit e6274c0757
3 changed files with 0 additions and 39 deletions

View File

@ -77,7 +77,6 @@ type Gui struct {
RepoStateMap map[Repo]*guiState
Config config.AppConfigurer
Tr *i18n.TranslationSet
Errors SentinelErrors
Updater *updates.Updater
statusManager *statusManager
credentials credentials
@ -432,8 +431,6 @@ func NewGui(log *logrus.Entry, gitCommand *commands.GitCommand, oSCommand *oscom
gui.watchFilesForChanges()
gui.GenerateSentinelErrors()
return gui, nil
}