@@ -207,8 +207,7 @@ private void RefreshLog()
207
207
{
208
208
if ( Repository != null )
209
209
{
210
- GitClient . Log ( ) . ThenInUI ( ( success , log ) =>
211
- {
210
+ GitClient . Log ( ) . ThenInUI ( ( success , log ) => {
212
211
if ( success ) OnLogUpdate ( log ) ;
213
212
} ) . Start ( ) ;
214
213
}
@@ -586,8 +585,7 @@ private void RevertCommit()
586
585
{
587
586
Repository
588
587
. Revert ( selection . CommitID )
589
- . FinallyInUI ( ( success , e ) =>
590
- {
588
+ . FinallyInUI ( ( success , e ) => {
591
589
if ( ! success )
592
590
{
593
591
EditorUtility . DisplayDialog ( dialogTitle ,
@@ -708,17 +706,15 @@ private void Pull()
708
706
Repository
709
707
. Pull ( )
710
708
// we need the error propagated from the original git command to handle things appropriately
711
- . Then ( success =>
712
- {
709
+ . Then ( success => {
713
710
if ( ! success )
714
711
{
715
712
// if Pull fails we need to parse the output of the command, figure out
716
713
// whether pull triggered a merge or a rebase, and abort the operation accordingly
717
714
// (either git rebase --abort or git merge --abort)
718
715
}
719
716
} , true )
720
- . FinallyInUI ( ( success , e ) =>
721
- {
717
+ . FinallyInUI ( ( success , e ) => {
722
718
if ( success )
723
719
{
724
720
EditorUtility . DisplayDialog ( Localization . PullActionTitle ,
@@ -741,8 +737,7 @@ private void Push()
741
737
var remote = Repository . CurrentRemote . HasValue ? Repository . CurrentRemote . Value . Name : String . Empty ;
742
738
Repository
743
739
. Push ( )
744
- . FinallyInUI ( ( success , e ) =>
745
- {
740
+ . FinallyInUI ( ( success , e ) => {
746
741
if ( success )
747
742
{
748
743
EditorUtility . DisplayDialog ( Localization . PushActionTitle ,
@@ -764,8 +759,7 @@ private void Fetch()
764
759
var remote = Repository . CurrentRemote . HasValue ? Repository . CurrentRemote . Value . Name : String . Empty ;
765
760
Repository
766
761
. Fetch ( )
767
- . FinallyInUI ( ( success , e ) =>
768
- {
762
+ . FinallyInUI ( ( success , e ) => {
769
763
if ( ! success )
770
764
{
771
765
EditorUtility . DisplayDialog ( FetchActionTitle , FetchFailureDescription ,
0 commit comments