1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-21 12:16:54 +02:00

Cleanup: remove unused field IsNewRepo

This commit is contained in:
Stefan Haller 2024-07-13 18:20:19 +02:00
parent a19bb0bbfe
commit dbf6716b9b

View File

@ -23,7 +23,6 @@ type AppConfig struct {
UserConfigDir string
TempDir string
AppState *AppState
IsNewRepo bool
}
type AppConfigurer interface {
@ -101,7 +100,6 @@ func NewAppConfig(
UserConfigDir: configDir,
TempDir: tempDir,
AppState: appState,
IsNewRepo: false,
}
return appConfig, nil