@@ -29,10 +29,10 @@ public SynchronizeXmlDocSection(IPipeline<SyncContext, bool> parent, Cancellatio
29
29
XmlDocInspectionParser xmlInspectionParser )
30
30
: base ( parent , tokenSource , logger )
31
31
{
32
- Block = new JustFuckingDoEverything ( this , tokenSource , logger , content , inspections , quickfixes , annotations , tagServices , github , mergeService , staging , xmlAnnotationParser , xmlQuickFixParser , xmlInspectionParser ) ;
32
+ Block = new SynchronizeXmlDocBlock ( this , tokenSource , logger , content , inspections , quickfixes , annotations , tagServices , github , mergeService , staging , xmlAnnotationParser , xmlQuickFixParser , xmlInspectionParser ) ;
33
33
}
34
34
35
- public JustFuckingDoEverything Block { get ; }
35
+ public SynchronizeXmlDocBlock Block { get ; }
36
36
37
37
protected override IReadOnlyDictionary < string , IDataflowBlock > Blocks => new Dictionary < string , IDataflowBlock >
38
38
{
@@ -45,7 +45,7 @@ public override void CreateBlocks()
45
45
}
46
46
}
47
47
48
- public class JustFuckingDoEverything : ActionBlockBase < SyncRequestParameters , SyncContext >
48
+ public class SynchronizeXmlDocBlock : ActionBlockBase < SyncRequestParameters , SyncContext >
49
49
{
50
50
private readonly IRubberduckDbService _content ;
51
51
private readonly IRepository < InspectionEntity > _inspections ;
@@ -59,7 +59,7 @@ public class JustFuckingDoEverything : ActionBlockBase<SyncRequestParameters, Sy
59
59
private readonly XmlDocQuickFixParser _xmlQuickFixParser ;
60
60
private readonly XmlDocInspectionParser _xmlInspectionParser ;
61
61
62
- public JustFuckingDoEverything ( PipelineSection < SyncContext > parent , CancellationTokenSource tokenSource , ILogger logger ,
62
+ public SynchronizeXmlDocBlock ( PipelineSection < SyncContext > parent , CancellationTokenSource tokenSource , ILogger logger ,
63
63
IRubberduckDbService content ,
64
64
IRepository < InspectionEntity > inspections ,
65
65
IRepository < QuickFixEntity > quickfixes ,
@@ -334,11 +334,11 @@ public SyncXmldocSection(IPipeline<SyncContext, bool> parent, CancellationTokenS
334
334
PrepareStaging = new PrepareStagingBlock(this, tokenSource, logger);
335
335
SaveStaging = new BulkSaveStagingBlock(this, tokenSource, staging, logger);
336
336
*/
337
- JustFuckingDoIt = new JustFuckingDoEverything ( this , tokenSource , logger , content , inspections , quickfixes , annotations , tagServices , github , mergeService , staging , xmlAnnotationParser , xmlQuickFixParser , xmlInspectionParser ) ;
337
+ SynchronizeXmlDoc = new SynchronizeXmlDocBlock ( this , tokenSource , logger , content , inspections , quickfixes , annotations , tagServices , github , mergeService , staging , xmlAnnotationParser , xmlQuickFixParser , xmlInspectionParser ) ;
338
338
}
339
339
340
340
#region blocks
341
- private JustFuckingDoEverything JustFuckingDoIt { get ; }
341
+ private SynchronizeXmlDocBlock SynchronizeXmlDoc { get ; }
342
342
/*
343
343
private ReceiveRequestBlock ReceiveRequest { get; }
344
344
private BroadcastParametersBlock BroadcastParameters { get; }
@@ -384,8 +384,8 @@ public SyncXmldocSection(IPipeline<SyncContext, bool> parent, CancellationTokenS
384
384
private PrepareStagingBlock PrepareStaging { get; }
385
385
private BulkSaveStagingBlock SaveStaging { get; }
386
386
*/
387
- public ITargetBlock < XmldocSyncRequestParameters > InputBlock => JustFuckingDoIt . Block ;
388
- public IDataflowBlock OutputBlock => JustFuckingDoIt . Block ;
387
+ public ITargetBlock < XmldocSyncRequestParameters > InputBlock => SynchronizeXmlDoc . Block ;
388
+ public IDataflowBlock OutputBlock => SynchronizeXmlDoc . Block ;
389
389
390
390
protected override IReadOnlyDictionary < string , IDataflowBlock > Blocks => new Dictionary < string , IDataflowBlock >
391
391
{
@@ -435,7 +435,7 @@ public SyncXmldocSection(IPipeline<SyncContext, bool> parent, CancellationTokenS
435
435
[nameof(PrepareStaging)] = PrepareStaging.Block,
436
436
[nameof(SaveStaging)] = SaveStaging.Block,
437
437
*/
438
- [ nameof ( JustFuckingDoIt ) ] = JustFuckingDoIt . Block ,
438
+ [ nameof ( SynchronizeXmlDoc ) ] = SynchronizeXmlDoc . Block ,
439
439
} ;
440
440
#endregion
441
441
@@ -487,6 +487,6 @@ public override void CreateBlocks()
487
487
PrepareStaging.CreateBlock(JoinStagingSources);
488
488
SaveStaging.CreateBlock(PrepareStaging);
489
489
*/
490
- JustFuckingDoIt . CreateBlock ( ) ;
490
+ SynchronizeXmlDoc . CreateBlock ( ) ;
491
491
}
492
492
}
0 commit comments