File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ public CircuitHost(
56
56
IList < ComponentDescriptor > descriptors ,
57
57
IDispatcher dispatcher ,
58
58
RemoteJSRuntime jsRuntime ,
59
- RemoteUriHelper remoteUriHelper ,
60
59
CircuitHandler [ ] circuitHandlers ,
61
60
ILogger logger )
62
61
{
@@ -67,7 +66,6 @@ public CircuitHost(
67
66
Descriptors = descriptors ?? throw new ArgumentNullException ( nameof ( descriptors ) ) ;
68
67
Renderer = renderer ?? throw new ArgumentNullException ( nameof ( renderer ) ) ;
69
68
JSRuntime = jsRuntime ?? throw new ArgumentNullException ( nameof ( jsRuntime ) ) ;
70
- RemoteUriHelper = remoteUriHelper ?? throw new ArgumentNullException ( nameof ( remoteUriHelper ) ) ;
71
69
_logger = logger ;
72
70
73
71
Services = scope . ServiceProvider ;
@@ -93,8 +91,6 @@ public CircuitHost(
93
91
94
92
public IList < ComponentDescriptor > Descriptors { get ; }
95
93
96
- public RemoteUriHelper RemoteUriHelper { get ; }
97
-
98
94
public IServiceProvider Services { get ; }
99
95
100
96
public Task < IEnumerable < string > > PrerenderComponentAsync ( Type componentType , ParameterCollection parameters )
Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ public override CircuitHost CreateCircuitHost(
77
77
components ,
78
78
dispatcher ,
79
79
jsRuntime ,
80
- uriHelper ,
81
80
circuitHandlers ,
82
81
_loggerFactory . CreateLogger < CircuitHost > ( ) ) ;
83
82
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ public static CircuitHost Create(
26
26
clientProxy = clientProxy ?? new CircuitClientProxy ( Mock . Of < IClientProxy > ( ) , Guid . NewGuid ( ) . ToString ( ) ) ;
27
27
var renderRegistry = new RendererRegistry ( ) ;
28
28
var jsRuntime = new RemoteJSRuntime ( ) ;
29
- var remoteUriHelper = new RemoteUriHelper ( ) ;
30
29
31
30
if ( remoteRenderer == null )
32
31
{
@@ -49,7 +48,6 @@ public static CircuitHost Create(
49
48
new List < ComponentDescriptor > ( ) ,
50
49
Renderer . CreateDefaultDispatcher ( ) ,
51
50
jsRuntime ,
52
- remoteUriHelper ,
53
51
handlers ,
54
52
NullLogger < CircuitHost > . Instance ) ;
55
53
}
You can’t perform that action at this time.
0 commit comments