@@ -49,13 +49,13 @@ public void Initialize(IRepositoryManager repositoryManager)
49
49
50
50
this . repositoryManager = repositoryManager ;
51
51
52
- repositoryManager . OnCurrentBranchUpdated += OnRepositoryManager_OnCurrentBranchUpdated ;
53
- repositoryManager . OnCurrentRemoteUpdated += OnRepositoryManager_OnCurrentRemoteUpdated ;
52
+ repositoryManager . OnCurrentBranchUpdated += RepositoryManager_OnCurrentBranchUpdated ;
53
+ repositoryManager . OnCurrentRemoteUpdated += RepositoryManager_OnCurrentRemoteUpdated ;
54
54
repositoryManager . OnStatusUpdated += status => CurrentStatus = status ;
55
55
repositoryManager . OnLocksUpdated += locks => CurrentLocks = locks ;
56
- repositoryManager . OnLocalBranchListUpdated += OnRepositoryManager_OnLocalBranchListUpdated ;
57
- repositoryManager . OnRemoteBranchListUpdated += OnRepositoryManager_OnRemoteBranchListUpdated ;
58
- repositoryManager . OnLocalBranchUpdated += OnRepositoryManager_OnLocalBranchUpdated ;
56
+ repositoryManager . OnLocalBranchListUpdated += RepositoryManager_OnLocalBranchListUpdated ;
57
+ repositoryManager . OnRemoteBranchListUpdated += RepositoryManager_OnRemoteBranchListUpdated ;
58
+ repositoryManager . OnLocalBranchUpdated += RepositoryManager_OnLocalBranchUpdated ;
59
59
repositoryManager . OnLocalBranchAdded += RepositoryManager_OnLocalBranchAdded ;
60
60
repositoryManager . OnLocalBranchRemoved += RepositoryManager_OnLocalBranchRemoved ;
61
61
repositoryManager . OnRemoteBranchAdded += RepositoryManager_OnRemoteBranchAdded ;
@@ -168,7 +168,7 @@ public bool Equals(IRepository other)
168
168
object . Equals ( LocalPath , other . LocalPath ) ;
169
169
}
170
170
171
- private void OnRepositoryManager_OnCurrentRemoteUpdated ( ConfigRemote ? remote )
171
+ private void RepositoryManager_OnCurrentRemoteUpdated ( ConfigRemote ? remote )
172
172
{
173
173
if ( ! Nullable . Equals ( currentRemote , remote ) )
174
174
{
@@ -179,7 +179,7 @@ private void OnRepositoryManager_OnCurrentRemoteUpdated(ConfigRemote? remote)
179
179
}
180
180
}
181
181
182
- private void OnRepositoryManager_OnCurrentBranchUpdated ( ConfigBranch ? branch )
182
+ private void RepositoryManager_OnCurrentBranchUpdated ( ConfigBranch ? branch )
183
183
{
184
184
if ( ! Nullable . Equals ( currentBranch , branch ) )
185
185
{
@@ -189,7 +189,7 @@ private void OnRepositoryManager_OnCurrentBranchUpdated(ConfigBranch? branch)
189
189
}
190
190
}
191
191
192
- private void OnRepositoryManager_OnLocalBranchUpdated ( string name )
192
+ private void RepositoryManager_OnLocalBranchUpdated ( string name )
193
193
{
194
194
if ( name == currentBranch ? . Name )
195
195
{
@@ -198,7 +198,7 @@ private void OnRepositoryManager_OnLocalBranchUpdated(string name)
198
198
}
199
199
}
200
200
201
- private void OnRepositoryManager_OnRemoteBranchListUpdated ( Dictionary < string , ConfigRemote > updatedRemotes , Dictionary < string , Dictionary < string , ConfigBranch > > branches )
201
+ private void RepositoryManager_OnRemoteBranchListUpdated ( Dictionary < string , ConfigRemote > updatedRemotes , Dictionary < string , Dictionary < string , ConfigBranch > > branches )
202
202
{
203
203
remotes = updatedRemotes ;
204
204
@@ -210,7 +210,7 @@ private void OnRepositoryManager_OnRemoteBranchListUpdated(Dictionary<string, Co
210
210
OnRemoteBranchListChanged ? . Invoke ( ) ;
211
211
}
212
212
213
- private void OnRepositoryManager_OnLocalBranchListUpdated ( Dictionary < string , ConfigBranch > branches )
213
+ private void RepositoryManager_OnLocalBranchListUpdated ( Dictionary < string , ConfigBranch > branches )
214
214
{
215
215
localBranches = branches ;
216
216
0 commit comments