Skip to content

Commit

Permalink
fix imports and format
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Dec 5, 2024
1 parent 3958ca7 commit ef6cbf9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@import FirebaseAuth;
#import <FirebaseAuth/FirebaseAuth.h>
#import "include/Private/FLTAuthStateChannelStreamHandler.h"
#import <FirebaseAuth/FirebaseAuth.h>
#import "include/Public/FLTFirebaseAuthPlugin.h"

@implementation FLTAuthStateChannelStreamHandler {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <FirebaseAuth/FirebaseAuth.h>
#import "include/Private/FLTIdTokenChannelStreamHandler.h"
#import <FirebaseAuth/FirebaseAuth.h>
#import "include/Public/FLTFirebaseAuthPlugin.h"

@implementation FLTIdTokenChannelStreamHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
#import <TargetConditionals.h>

#if TARGET_OS_OSX
#import <FirebaseAuth/FirebaseAuth.h>
#import <FlutterMacOS/FlutterMacOS.h>
#else
#import <Flutter/Flutter.h>
#endif

@import FirebaseAuth;
#endif

#import <Foundation/Foundation.h>
#import "../Public/CustomPigeonHeader.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
#import <TargetConditionals.h>

#if TARGET_OS_OSX
#import <FirebaseAuth/FirebaseAuth.h>
#import <FlutterMacOS/FlutterMacOS.h>
#else
#import <Flutter/Flutter.h>
@import FirebaseAuth;
#endif

@import FirebaseAuth;
#import "../Public/CustomPigeonHeader.h"
#import "PigeonParser.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
#import <TargetConditionals.h>

#if TARGET_OS_OSX
#import <FirebaseAuth/FirebaseAuth.h>
#import <FlutterMacOS/FlutterMacOS.h>
#else
#import <Flutter/Flutter.h>
@import FirebaseAuth;
#endif

@import FirebaseAuth;
#import "../Public/firebase_auth_messages.g.h"

#import <Foundation/Foundation.h>
Expand Down

0 comments on commit ef6cbf9

Please sign in to comment.