Skip to content

Commit 03731a9

Browse files
committed
Some minor changes. CDQI needs some housecleaning.
1 parent 7ff75f0 commit 03731a9

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

CoreDataQueryInterface.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,6 @@
10931093
PRODUCT_BUNDLE_IDENTIFIER = com.prosumma.CoreDataQueryInterfaceTests;
10941094
PRODUCT_MODULE_NAME = CoreDataQueryInterfaceTests;
10951095
PRODUCT_NAME = "$(TARGET_NAME)";
1096-
SWIFT_SWIFT3_OBJC_INFERENCE = On;
10971096
SWIFT_VERSION = 4.0;
10981097
};
10991098
name = Debug;
@@ -1108,7 +1107,6 @@
11081107
PRODUCT_BUNDLE_IDENTIFIER = com.prosumma.CoreDataQueryInterfaceTests;
11091108
PRODUCT_MODULE_NAME = CoreDataQueryInterfaceTests;
11101109
PRODUCT_NAME = "$(TARGET_NAME)";
1111-
SWIFT_SWIFT3_OBJC_INFERENCE = On;
11121110
SWIFT_VERSION = 4.0;
11131111
};
11141112
name = Release;

CoreDataQueryInterface/Protocols.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,7 @@ extension KeyPathExpressionConvertible {
144144
}
145145
if let parentName = cdqiParent?.cdqiRawName {
146146
let index = key.index(key.startIndex, offsetBy: 1)
147-
// let start = key.substring(to: index)
148147
let start = key[..<index]
149-
// let remainder = key.substring(from: index)
150148
let remainder = key[index...]
151149
let name = "\(start.uppercased())\(remainder)"
152150
return "\(parentName)\(name)"

0 commit comments

Comments
 (0)