Skip to content

Commit 65bc23c

Browse files
aednlaxerjokerttu
authored andcommitted
Use relative import paths
1 parent 45e9116 commit 65bc23c

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FGMClusterManagersController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#import "FGMClusterManagersController.h"
66

7-
#import "FGMMarkerUserData.h"
8-
#import "FLTGoogleMapJSONConversions.h"
7+
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
8+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
99

1010
@interface FGMClusterManagersController ()
1111

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FGMMarkerUserData.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "FGMMarkerUserData.h"
5+
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
66

77
@implementation FGMMarkerUserData
88

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FLTGoogleMapHeatmapController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "FLTGoogleMapHeatmapController.h"
6-
#import "FLTGoogleMapJSONConversions.h"
5+
#import "./include/google_maps_flutter_ios/FLTGoogleMapHeatmapController.h"
6+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
77

88
/// If Swift Package Manager is in use, Objective-C headers are available under the
99
/// GoogleMapsUtilsObjC package. When using CocoaPods, the headers are provided by the

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FLTGoogleMapJSONConversions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "FLTGoogleMapJSONConversions.h"
6-
#import "FGMMarkerUserData.h"
5+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
6+
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
77

88
/// Returns dict[key], or nil if dict[key] is NSNull.
99
id FGMGetValueOrNilFromDict(NSDictionary *dict, NSString *key) {

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FLTGoogleMapTileOverlayController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "FLTGoogleMapTileOverlayController.h"
6-
#import "FLTGoogleMapJSONConversions.h"
5+
#import "./include/google_maps_flutter_ios/FLTGoogleMapTileOverlayController.h"
6+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
77

88
@interface FLTGoogleMapTileOverlayController ()
99

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/FLTGoogleMapsPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "FLTGoogleMapsPlugin.h"
5+
#import "./include/google_maps_flutter_ios/FLTGoogleMapsPlugin.h"
66

77
#pragma mark - GoogleMaps plugin implementation
88

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/GoogleMapCircleController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "GoogleMapCircleController.h"
6-
#import "FLTGoogleMapJSONConversions.h"
5+
#import "./include/google_maps_flutter_ios/GoogleMapCircleController.h"
6+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
77

88
@interface FLTGoogleMapCircleController ()
99

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/GoogleMapController.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
@import GoogleMapsUtilsObjC;
1212
#endif
1313

14-
#import "GoogleMapController.h"
14+
#import "./include/google_maps_flutter_ios/GoogleMapController.h"
1515

16-
#import "FGMMarkerUserData.h"
17-
#import "FLTGoogleMapHeatmapController.h"
18-
#import "FLTGoogleMapJSONConversions.h"
19-
#import "FLTGoogleMapTileOverlayController.h"
20-
#import "messages.g.h"
16+
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
17+
#import "./include/google_maps_flutter_ios/FLTGoogleMapHeatmapController.h"
18+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
19+
#import "./include/google_maps_flutter_ios/FLTGoogleMapTileOverlayController.h"
20+
#import "./include/google_maps_flutter_ios/messages.g.h"
2121

2222
#pragma mark - Conversion of JSON-like values sent via platform channels. Forward declarations.
2323

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/GoogleMapMarkerController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#import "GoogleMapMarkerController.h"
66

7-
#import "FGMMarkerUserData.h"
8-
#import "FLTGoogleMapJSONConversions.h"
7+
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
8+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
99

1010
@interface FLTGoogleMapMarkerController ()
1111

packages/google_maps_flutter/google_maps_flutter_ios/ios/google_maps_flutter_ios/Sources/google_maps_flutter_ios/GoogleMapPolygonController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "GoogleMapPolygonController.h"
6-
#import "FLTGoogleMapJSONConversions.h"
5+
#import "./include/google_maps_flutter_ios/GoogleMapPolygonController.h"
6+
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
77

88
@interface FLTGoogleMapPolygonController ()
99

0 commit comments

Comments
 (0)