@@ -176,8 +176,8 @@ public void onMethodCall(MethodCall call, Result result) {
176176 }
177177 }
178178
179- private void handleSignInWithPhoneNumber (MethodCall call , Result result ,
180- FirebaseAuth firebaseAuth ) {
179+ private void handleSignInWithPhoneNumber (
180+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
181181 Map <String , String > arguments = call .arguments ();
182182 String verificationId = arguments .get ("verificationId" );
183183 String smsCode = arguments .get ("smsCode" );
@@ -189,8 +189,8 @@ private void handleSignInWithPhoneNumber(MethodCall call, Result result,
189189 .addOnCompleteListener (new SignInCompleteListener (result ));
190190 }
191191
192- private void handleVerifyPhoneNumber (MethodCall call , Result result ,
193- final FirebaseAuth firebaseAuth ) {
192+ private void handleVerifyPhoneNumber (
193+ MethodCall call , Result result , final FirebaseAuth firebaseAuth ) {
194194 Map <String , Object > arguments = call .arguments ();
195195 final int handle = (int ) arguments .get ("handle" );
196196 String phoneNumber = (String ) arguments .get ("phoneNumber" );
@@ -285,8 +285,8 @@ private Map<String, Object> getVerifyPhoneNumberExceptionMap(FirebaseException e
285285 return exceptionMap ;
286286 }
287287
288- private void handleLinkWithEmailAndPassword (MethodCall call , Result result ,
289- FirebaseAuth firebaseAuth ) {
288+ private void handleLinkWithEmailAndPassword (
289+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
290290 Map <String , String > arguments = call .arguments ();
291291 String email = arguments .get ("email" );
292292 String password = arguments .get ("password" );
@@ -298,8 +298,8 @@ private void handleLinkWithEmailAndPassword(MethodCall call, Result result,
298298 .addOnCompleteListener (new SignInCompleteListener (result ));
299299 }
300300
301- private void handleCurrentUser (@ SuppressWarnings ( "unused" ) MethodCall call , final Result result ,
302- FirebaseAuth firebaseAuth ) {
301+ private void handleCurrentUser (
302+ @ SuppressWarnings ( "unused" ) MethodCall call , final Result result , FirebaseAuth firebaseAuth ) {
303303 FirebaseUser user = firebaseAuth .getCurrentUser ();
304304 if (user == null ) {
305305 result .success (null );
@@ -309,13 +309,13 @@ private void handleCurrentUser(@SuppressWarnings("unused") MethodCall call, fina
309309 result .success (userMap );
310310 }
311311
312- private void handleSignInAnonymously (@ SuppressWarnings ( "unused" ) MethodCall call , Result result ,
313- FirebaseAuth firebaseAuth ) {
312+ private void handleSignInAnonymously (
313+ @ SuppressWarnings ( "unused" ) MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
314314 firebaseAuth .signInAnonymously ().addOnCompleteListener (new SignInCompleteListener (result ));
315315 }
316316
317- private void handleCreateUserWithEmailAndPassword (MethodCall call , Result result ,
318- FirebaseAuth firebaseAuth ) {
317+ private void handleCreateUserWithEmailAndPassword (
318+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
319319 Map <String , String > arguments = call .arguments ();
320320 String email = arguments .get ("email" );
321321 String password = arguments .get ("password" );
@@ -325,8 +325,8 @@ private void handleCreateUserWithEmailAndPassword(MethodCall call, Result result
325325 .addOnCompleteListener (new SignInCompleteListener (result ));
326326 }
327327
328- private void handleFetchSignInMethodsForEmail (MethodCall call , Result result ,
329- FirebaseAuth firebaseAuth ) {
328+ private void handleFetchSignInMethodsForEmail (
329+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
330330 Map <String , String > arguments = call .arguments ();
331331 String email = arguments .get ("email" );
332332
@@ -335,8 +335,8 @@ private void handleFetchSignInMethodsForEmail(MethodCall call, Result result,
335335 .addOnCompleteListener (new GetSignInMethodsCompleteListener (result ));
336336 }
337337
338- private void handleSendPasswordResetEmail (MethodCall call , Result result ,
339- FirebaseAuth firebaseAuth ) {
338+ private void handleSendPasswordResetEmail (
339+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
340340 Map <String , String > arguments = call .arguments ();
341341 String email = arguments .get ("email" );
342342
@@ -367,8 +367,8 @@ private void handleDelete(MethodCall call, Result result, FirebaseAuth firebaseA
367367 .addOnCompleteListener (new TaskVoidCompleteListener (result ));
368368 }
369369
370- private void handleSignInWithEmailAndPassword (MethodCall call , Result result ,
371- FirebaseAuth firebaseAuth ) {
370+ private void handleSignInWithEmailAndPassword (
371+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
372372 Map <String , String > arguments = call .arguments ();
373373 String email = arguments .get ("email" );
374374 String password = arguments .get ("password" );
@@ -389,8 +389,8 @@ private void handleSignInWithGoogle(MethodCall call, Result result, FirebaseAuth
389389 .addOnCompleteListener (new SignInCompleteListener (result ));
390390 }
391391
392- private void handleLinkWithGoogleCredential (MethodCall call , Result result ,
393- FirebaseAuth firebaseAuth ) {
392+ private void handleLinkWithGoogleCredential (
393+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
394394 Map <String , String > arguments = call .arguments ();
395395 String idToken = arguments .get ("idToken" );
396396 String accessToken = arguments .get ("accessToken" );
@@ -402,8 +402,8 @@ private void handleLinkWithGoogleCredential(MethodCall call, Result result,
402402 .addOnCompleteListener (new SignInCompleteListener (result ));
403403 }
404404
405- private void handleLinkWithFacebookCredential (MethodCall call , Result result ,
406- FirebaseAuth firebaseAuth ) {
405+ private void handleLinkWithFacebookCredential (
406+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
407407 Map <String , String > arguments = call .arguments ();
408408 String accessToken = arguments .get ("accessToken" );
409409
@@ -434,8 +434,8 @@ private void handleSignInWithTwitter(MethodCall call, Result result, FirebaseAut
434434 .addOnCompleteListener (new SignInCompleteListener (result ));
435435 }
436436
437- private void handleLinkWithTwitterCredential (MethodCall call , Result result ,
438- FirebaseAuth firebaseAuth ) {
437+ private void handleLinkWithTwitterCredential (
438+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
439439 String authToken = call .argument ("authToken" );
440440 String authTokenSecret = call .argument ("authTokenSecret" );
441441
@@ -455,8 +455,8 @@ private void handleSignInWithGithub(MethodCall call, Result result, FirebaseAuth
455455 .addOnCompleteListener (new SignInCompleteListener (result ));
456456 }
457457
458- private void handleLinkWithGithubCredential (MethodCall call , Result result ,
459- FirebaseAuth firebaseAuth ) {
458+ private void handleLinkWithGithubCredential (
459+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
460460 String token = call .argument ("token" );
461461
462462 AuthCredential credential = GithubAuthProvider .getCredential (token );
@@ -476,8 +476,8 @@ private void handleUnlinkCredential(MethodCall call, Result result, FirebaseAuth
476476 .addOnCompleteListener (new SignInCompleteListener (result ));
477477 }
478478
479- private void handleSignInWithCustomToken (MethodCall call , final Result result ,
480- FirebaseAuth firebaseAuth ) {
479+ private void handleSignInWithCustomToken (
480+ MethodCall call , final Result result , FirebaseAuth firebaseAuth ) {
481481 Map <String , String > arguments = call .arguments ();
482482 String token = arguments .get ("token" );
483483
@@ -570,8 +570,8 @@ public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
570570 result .success (handle );
571571 }
572572
573- private void handleStopListeningAuthState (MethodCall call , Result result ,
574- FirebaseAuth firebaseAuth ) {
573+ private void handleStopListeningAuthState (
574+ MethodCall call , Result result , FirebaseAuth firebaseAuth ) {
575575 Map <String , Integer > arguments = call .arguments ();
576576 Integer id = arguments .get ("id" );
577577
0 commit comments