@@ -66,7 +66,7 @@ public void RemoveController(IPanelSystemController controller)
66
66
/// <param name="controller"></param>
67
67
public async void Push ( IPanelViewController controller )
68
68
{
69
- await PushAsync ( controller ) . ConfigureAwait ( false ) ;
69
+ await PushAsync ( controller ) ;
70
70
}
71
71
72
72
/// <summary>
@@ -78,15 +78,15 @@ public async Task PushAsync(IPanelViewController controller)
78
78
{
79
79
stack . Add ( controller ) ;
80
80
_needsTransition = true ;
81
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
81
+ await TransitionAsync ( ) ;
82
82
}
83
83
84
84
/// <summary>
85
85
/// Pop the top panel off the stack
86
86
/// </summary>
87
87
public async void Pop ( )
88
88
{
89
- await PopAsync ( ) . ConfigureAwait ( false ) ;
89
+ await PopAsync ( ) ;
90
90
}
91
91
92
92
/// <summary>
@@ -102,7 +102,7 @@ public async Task PopAsync()
102
102
103
103
stack . RemoveAt ( stack . Count - 1 ) ;
104
104
_needsTransition = true ;
105
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
105
+ await TransitionAsync ( ) ;
106
106
}
107
107
108
108
/// <summary>
@@ -114,7 +114,7 @@ public async Task PopAsync(int count)
114
114
{
115
115
stack . RemoveRange ( stack . Count - count , count ) ;
116
116
_needsTransition = true ;
117
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
117
+ await TransitionAsync ( ) ;
118
118
}
119
119
120
120
/// <summary>
@@ -123,7 +123,7 @@ public async Task PopAsync(int count)
123
123
/// <param name="count">Number of panels to pop</param>
124
124
public async void Pop ( int count )
125
125
{
126
- await PopAsync ( count ) . ConfigureAwait ( false ) ;
126
+ await PopAsync ( count ) ;
127
127
}
128
128
129
129
/// <summary>
@@ -138,7 +138,7 @@ public async Task PopToIndexAsync(int index)
138
138
stack . RemoveRange ( index + 1 , stack . Count - ( index + 1 ) ) ;
139
139
_needsTransition = true ;
140
140
}
141
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
141
+ await TransitionAsync ( ) ;
142
142
}
143
143
144
144
/// <summary>
@@ -147,7 +147,7 @@ public async Task PopToIndexAsync(int index)
147
147
/// <param name="index"></param>
148
148
public async void PopToIndex ( int index )
149
149
{
150
- await PopToIndexAsync ( index ) . ConfigureAwait ( false ) ;
150
+ await PopToIndexAsync ( index ) ;
151
151
}
152
152
153
153
/// <summary>
@@ -164,7 +164,7 @@ public async Task PopAndPushAsync(int popCount, params IPanelViewController[] co
164
164
stack . RemoveRange ( stack . Count - popCount , popCount ) ;
165
165
stack . AddRange ( controllers ) ;
166
166
_needsTransition = true ;
167
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
167
+ await TransitionAsync ( ) ;
168
168
}
169
169
170
170
/// <summary>
@@ -174,7 +174,7 @@ public async Task PopAndPushAsync(int popCount, params IPanelViewController[] co
174
174
/// <param name="controllers">list of controllers to push</param>
175
175
public async void PopAndPush ( int popCount , params IPanelViewController [ ] controllers )
176
176
{
177
- await PopAndPushAsync ( popCount , controllers ) . ConfigureAwait ( false ) ;
177
+ await PopAndPushAsync ( popCount , controllers ) ;
178
178
}
179
179
180
180
/// <summary>
@@ -191,7 +191,7 @@ public async Task PopAndPushAsync(int popCount, IPanelViewController controller)
191
191
stack . RemoveRange ( stack . Count - popCount , popCount ) ;
192
192
stack . Add ( controller ) ;
193
193
_needsTransition = true ;
194
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
194
+ await TransitionAsync ( ) ;
195
195
}
196
196
197
197
/// <summary>
@@ -201,7 +201,7 @@ public async Task PopAndPushAsync(int popCount, IPanelViewController controller)
201
201
/// <param name="controller">controller to push</param>
202
202
public async void PopAndPush ( int popCount , IPanelViewController controller )
203
203
{
204
- await PopAndPushAsync ( popCount , controller ) . ConfigureAwait ( false ) ;
204
+ await PopAndPushAsync ( popCount , controller ) ;
205
205
}
206
206
207
207
/// <summary>
@@ -213,7 +213,7 @@ public async Task PushAsync(params IPanelViewController[] controllers)
213
213
{
214
214
stack . AddRange ( controllers ) ;
215
215
_needsTransition = true ;
216
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
216
+ await TransitionAsync ( ) ;
217
217
}
218
218
219
219
/// <summary>
@@ -222,7 +222,7 @@ public async Task PushAsync(params IPanelViewController[] controllers)
222
222
/// <param name="controllers">array of panel view controllers</param>
223
223
public async void Push ( params IPanelViewController [ ] controllers )
224
224
{
225
- await PushAsync ( controllers ) . ConfigureAwait ( false ) ;
225
+ await PushAsync ( controllers ) ;
226
226
}
227
227
228
228
/// <summary>
@@ -235,7 +235,7 @@ public async Task ClearAndPushAsync(params IPanelViewController[] controllers)
235
235
stack . Clear ( ) ;
236
236
stack . AddRange ( controllers ) ;
237
237
_needsTransition = true ;
238
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
238
+ await TransitionAsync ( ) ;
239
239
}
240
240
241
241
/// <summary>
@@ -244,7 +244,7 @@ public async Task ClearAndPushAsync(params IPanelViewController[] controllers)
244
244
/// <param name="controllers">array of panel view controllers</param>
245
245
public async void ClearAndPush ( params IPanelViewController [ ] controllers )
246
246
{
247
- await ClearAndPushAsync ( controllers ) . ConfigureAwait ( false ) ;
247
+ await ClearAndPushAsync ( controllers ) ;
248
248
}
249
249
250
250
/// <summary>
@@ -255,15 +255,15 @@ public async Task ClearAsync()
255
255
{
256
256
stack . Clear ( ) ;
257
257
_needsTransition = true ;
258
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
258
+ await TransitionAsync ( ) ;
259
259
}
260
260
261
261
/// <summary>
262
262
/// Clear all panels from the stack
263
263
/// </summary>
264
264
public async void Clear ( )
265
265
{
266
- await ClearAsync ( ) . ConfigureAwait ( false ) ;
266
+ await ClearAsync ( ) ;
267
267
}
268
268
269
269
/// <summary>
@@ -275,15 +275,15 @@ public async Task ClearAndPushAsync(IPanelViewController viewController)
275
275
stack . Clear ( ) ;
276
276
stack . Add ( viewController ) ;
277
277
_needsTransition = true ;
278
- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
278
+ await TransitionAsync ( ) ;
279
279
}
280
280
281
281
/// <summary>
282
282
/// Clear all panels from the stack and then push a panel on top
283
283
/// </summary>
284
284
public async void ClearAndPush ( IPanelViewController viewController )
285
285
{
286
- await ClearAndPushAsync ( viewController ) . ConfigureAwait ( false ) ;
286
+ await ClearAndPushAsync ( viewController ) ;
287
287
}
288
288
289
289
private async Task TransitionAsync ( )
@@ -312,7 +312,7 @@ private async Task TransitionAsync()
312
312
tasks [ i ] = systemControllers [ i ] . TransitionAsync ( ) ;
313
313
}
314
314
315
- await Task . WhenAll ( tasks ) . ConfigureAwait ( false ) ;
315
+ await Task . WhenAll ( tasks ) ;
316
316
}
317
317
_isTransitioning = false ;
318
318
}
0 commit comments