reverting older ordering, changed during merge

This commit is contained in:
Alex Giurgiu
2023-11-21 13:29:38 +02:00
parent cab07b32c1
commit 015efd4c53
2 changed files with 2 additions and 2 deletions

View File

@@ -42,8 +42,8 @@ type InitialDbState struct {
ReadOnly bool
DbData env.DbData
Remotes *concurrentmap.Map[string, env.Remote]
Backups *concurrentmap.Map[string, env.Remote]
Branches *concurrentmap.Map[string, env.BranchConfig]
Backups *concurrentmap.Map[string, env.Remote]
// If err is set, this InitialDbState is partially invalid, but may be
// usable to initialize a database at a revision specifier, for

View File

@@ -33,8 +33,8 @@ type SessionStateAdapter struct {
session *DoltSession
dbName string
remotes *concurrentmap.Map[string, env.Remote]
branches *concurrentmap.Map[string, env.BranchConfig]
backups *concurrentmap.Map[string, env.Remote]
branches *concurrentmap.Map[string, env.BranchConfig]
}
func (s SessionStateAdapter) SetCWBHeadRef(ctx context.Context, newRef ref.MarshalableRef) error {