@@ -66,7 +66,7 @@ public void RemoveController(IPanelSystemController controller)
6666 /// <param name="controller"></param>
6767 public async void Push ( IPanelViewController controller )
6868 {
69- await PushAsync ( controller ) . ConfigureAwait ( false ) ;
69+ await PushAsync ( controller ) ;
7070 }
7171
7272 /// <summary>
@@ -78,15 +78,15 @@ public async Task PushAsync(IPanelViewController controller)
7878 {
7979 stack . Add ( controller ) ;
8080 _needsTransition = true ;
81- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
81+ await TransitionAsync ( ) ;
8282 }
8383
8484 /// <summary>
8585 /// Pop the top panel off the stack
8686 /// </summary>
8787 public async void Pop ( )
8888 {
89- await PopAsync ( ) . ConfigureAwait ( false ) ;
89+ await PopAsync ( ) ;
9090 }
9191
9292 /// <summary>
@@ -102,7 +102,7 @@ public async Task PopAsync()
102102
103103 stack . RemoveAt ( stack . Count - 1 ) ;
104104 _needsTransition = true ;
105- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
105+ await TransitionAsync ( ) ;
106106 }
107107
108108 /// <summary>
@@ -114,7 +114,7 @@ public async Task PopAsync(int count)
114114 {
115115 stack . RemoveRange ( stack . Count - count , count ) ;
116116 _needsTransition = true ;
117- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
117+ await TransitionAsync ( ) ;
118118 }
119119
120120 /// <summary>
@@ -123,7 +123,7 @@ public async Task PopAsync(int count)
123123 /// <param name="count">Number of panels to pop</param>
124124 public async void Pop ( int count )
125125 {
126- await PopAsync ( count ) . ConfigureAwait ( false ) ;
126+ await PopAsync ( count ) ;
127127 }
128128
129129 /// <summary>
@@ -138,7 +138,7 @@ public async Task PopToIndexAsync(int index)
138138 stack . RemoveRange ( index + 1 , stack . Count - ( index + 1 ) ) ;
139139 _needsTransition = true ;
140140 }
141- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
141+ await TransitionAsync ( ) ;
142142 }
143143
144144 /// <summary>
@@ -147,7 +147,7 @@ public async Task PopToIndexAsync(int index)
147147 /// <param name="index"></param>
148148 public async void PopToIndex ( int index )
149149 {
150- await PopToIndexAsync ( index ) . ConfigureAwait ( false ) ;
150+ await PopToIndexAsync ( index ) ;
151151 }
152152
153153 /// <summary>
@@ -164,7 +164,7 @@ public async Task PopAndPushAsync(int popCount, params IPanelViewController[] co
164164 stack . RemoveRange ( stack . Count - popCount , popCount ) ;
165165 stack . AddRange ( controllers ) ;
166166 _needsTransition = true ;
167- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
167+ await TransitionAsync ( ) ;
168168 }
169169
170170 /// <summary>
@@ -174,7 +174,7 @@ public async Task PopAndPushAsync(int popCount, params IPanelViewController[] co
174174 /// <param name="controllers">list of controllers to push</param>
175175 public async void PopAndPush ( int popCount , params IPanelViewController [ ] controllers )
176176 {
177- await PopAndPushAsync ( popCount , controllers ) . ConfigureAwait ( false ) ;
177+ await PopAndPushAsync ( popCount , controllers ) ;
178178 }
179179
180180 /// <summary>
@@ -191,7 +191,7 @@ public async Task PopAndPushAsync(int popCount, IPanelViewController controller)
191191 stack . RemoveRange ( stack . Count - popCount , popCount ) ;
192192 stack . Add ( controller ) ;
193193 _needsTransition = true ;
194- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
194+ await TransitionAsync ( ) ;
195195 }
196196
197197 /// <summary>
@@ -201,7 +201,7 @@ public async Task PopAndPushAsync(int popCount, IPanelViewController controller)
201201 /// <param name="controller">controller to push</param>
202202 public async void PopAndPush ( int popCount , IPanelViewController controller )
203203 {
204- await PopAndPushAsync ( popCount , controller ) . ConfigureAwait ( false ) ;
204+ await PopAndPushAsync ( popCount , controller ) ;
205205 }
206206
207207 /// <summary>
@@ -213,7 +213,7 @@ public async Task PushAsync(params IPanelViewController[] controllers)
213213 {
214214 stack . AddRange ( controllers ) ;
215215 _needsTransition = true ;
216- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
216+ await TransitionAsync ( ) ;
217217 }
218218
219219 /// <summary>
@@ -222,7 +222,7 @@ public async Task PushAsync(params IPanelViewController[] controllers)
222222 /// <param name="controllers">array of panel view controllers</param>
223223 public async void Push ( params IPanelViewController [ ] controllers )
224224 {
225- await PushAsync ( controllers ) . ConfigureAwait ( false ) ;
225+ await PushAsync ( controllers ) ;
226226 }
227227
228228 /// <summary>
@@ -235,7 +235,7 @@ public async Task ClearAndPushAsync(params IPanelViewController[] controllers)
235235 stack . Clear ( ) ;
236236 stack . AddRange ( controllers ) ;
237237 _needsTransition = true ;
238- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
238+ await TransitionAsync ( ) ;
239239 }
240240
241241 /// <summary>
@@ -244,7 +244,7 @@ public async Task ClearAndPushAsync(params IPanelViewController[] controllers)
244244 /// <param name="controllers">array of panel view controllers</param>
245245 public async void ClearAndPush ( params IPanelViewController [ ] controllers )
246246 {
247- await ClearAndPushAsync ( controllers ) . ConfigureAwait ( false ) ;
247+ await ClearAndPushAsync ( controllers ) ;
248248 }
249249
250250 /// <summary>
@@ -255,15 +255,15 @@ public async Task ClearAsync()
255255 {
256256 stack . Clear ( ) ;
257257 _needsTransition = true ;
258- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
258+ await TransitionAsync ( ) ;
259259 }
260260
261261 /// <summary>
262262 /// Clear all panels from the stack
263263 /// </summary>
264264 public async void Clear ( )
265265 {
266- await ClearAsync ( ) . ConfigureAwait ( false ) ;
266+ await ClearAsync ( ) ;
267267 }
268268
269269 /// <summary>
@@ -275,15 +275,15 @@ public async Task ClearAndPushAsync(IPanelViewController viewController)
275275 stack . Clear ( ) ;
276276 stack . Add ( viewController ) ;
277277 _needsTransition = true ;
278- await TransitionAsync ( ) . ConfigureAwait ( false ) ;
278+ await TransitionAsync ( ) ;
279279 }
280280
281281 /// <summary>
282282 /// Clear all panels from the stack and then push a panel on top
283283 /// </summary>
284284 public async void ClearAndPush ( IPanelViewController viewController )
285285 {
286- await ClearAndPushAsync ( viewController ) . ConfigureAwait ( false ) ;
286+ await ClearAndPushAsync ( viewController ) ;
287287 }
288288
289289 private async Task TransitionAsync ( )
@@ -312,7 +312,7 @@ private async Task TransitionAsync()
312312 tasks [ i ] = systemControllers [ i ] . TransitionAsync ( ) ;
313313 }
314314
315- await Task . WhenAll ( tasks ) . ConfigureAwait ( false ) ;
315+ await Task . WhenAll ( tasks ) ;
316316 }
317317 _isTransitioning = false ;
318318 }
0 commit comments