Skip to content

Commit 8db65bc

Browse files
author
Luc Dion
committed
Migrate to Swift 4
1 parent fe34344 commit 8db65bc

4 files changed

Lines changed: 0 additions & 192 deletions

File tree

LayoutFrameworkBenchmark.xcodeproj/project.pbxproj

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
24661D001F4EFFF5002CB883 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24661CFF1F4EFFF5002CB883 /* AppDelegate.swift */; };
2525
24661D071F4EFFF5002CB883 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 24661D061F4EFFF5002CB883 /* Assets.xcassets */; };
2626
24661D0A1F4EFFF5002CB883 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 24661D081F4EFFF5002CB883 /* LaunchScreen.storyboard */; };
27-
DF0615A0200685930064DC23 /* FeedItemStackViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF06159F200685930064DC23 /* FeedItemStackViewLayout.swift */; };
2827
/* End PBXBuildFile section */
2928

3029
/* Begin PBXFileReference section */
@@ -49,7 +48,6 @@
4948
24661D0B1F4EFFF5002CB883 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5049
4F34489CA12B845548D7F17E /* Pods_LayoutFrameworkBenchmark.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LayoutFrameworkBenchmark.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5150
73BD901DE3512A23A7603899 /* Pods-LayoutFrameworkBenchmark.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LayoutFrameworkBenchmark.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LayoutFrameworkBenchmark/Pods-LayoutFrameworkBenchmark.debug.xcconfig"; sourceTree = "<group>"; };
52-
DF06159F200685930064DC23 /* FeedItemStackViewLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedItemStackViewLayout.swift; sourceTree = "<group>"; };
5351
/* End PBXFileReference section */
5452

5553
/* Begin PBXFrameworksBuildPhase section */
@@ -72,7 +70,6 @@
7270
2401BC8D1F4F01CC00788998 /* LayoutKit */,
7371
2401BC9C1F4F041400788998 /* ManualLayout */,
7472
2401BC911F4F020600788998 /* PinLayout */,
75-
DF06159E200685930064DC23 /* StackViewLayout */,
7673
2401BC9F1F4F043800788998 /* UIStackView */,
7774
2401BC751F4F018C00788998 /* BenchmarkViewController.swift */,
7875
2401BC761F4F018C00788998 /* CollectionViewController.swift */,
@@ -188,15 +185,6 @@
188185
name = Frameworks;
189186
sourceTree = "<group>";
190187
};
191-
DF06159E200685930064DC23 /* StackViewLayout */ = {
192-
isa = PBXGroup;
193-
children = (
194-
DF06159F200685930064DC23 /* FeedItemStackViewLayout.swift */,
195-
);
196-
name = StackViewLayout;
197-
path = Benchmarks/StackViewLayout;
198-
sourceTree = "<group>";
199-
};
200188
/* End PBXGroup section */
201189

202190
/* Begin PBXNativeTarget section */
@@ -334,7 +322,6 @@
334322
isa = PBXSourcesBuildPhase;
335323
buildActionMask = 2147483647;
336324
files = (
337-
DF0615A0200685930064DC23 /* FeedItemStackViewLayout.swift in Sources */,
338325
2401BCA11F4F044000788998 /* FeedItemUIStackView.swift in Sources */,
339326
2401BC8B1F4F018C00788998 /* Stopwatch.swift in Sources */,
340327
2401BC8F1F4F01D600788998 /* FeedItemLayoutKitView.swift in Sources */,

LayoutFrameworkBenchmark/Benchmarks/BenchmarkViewController.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ class BenchmarkViewController: UITableViewController {
4444
return CollectionViewControllerFeedItemPinLayoutView(data: data)
4545
}),
4646

47-
ViewControllerData(title: "StackViewLayout", factoryBlock: { viewCount in
48-
let data = FeedItemData.generate(count: viewCount)
49-
return CollectionViewControllerFeedItemStackViewLayoutView(data: data)
50-
}),
51-
5247
ViewControllerData(title: "UIStackView", factoryBlock: { viewCount in
5348
if #available(iOS 9.0, *) {
5449
let data = FeedItemData.generate(count: viewCount)

LayoutFrameworkBenchmark/Benchmarks/CollectionViewController.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class CollectionViewControllerFeedItemAutoLayoutView: CollectionViewController<F
2626
class CollectionViewControllerFeedItemLayoutKitView: CollectionViewController<FeedItemLayoutKitView> {}
2727
class CollectionViewControllerFeedItemManualView: CollectionViewController<FeedItemManualView> {}
2828
class CollectionViewControllerFeedItemPinLayoutView: CollectionViewController<FeedItemPinLayoutView> {}
29-
class CollectionViewControllerFeedItemStackViewLayoutView: CollectionViewController<FeedItemStackViewLayoutView> {}
3029
class CollectionViewControllerFeedItemFlexLayoutView: CollectionViewController<FeedItemFlexLayoutView> {}
3130

3231
/// A UICollectionView controller where each cell's content view is a DataBinder.

LayoutFrameworkBenchmark/Benchmarks/StackViewLayout/FeedItemStackViewLayout.swift

Lines changed: 0 additions & 173 deletions
This file was deleted.

0 commit comments

Comments
 (0)