We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534d52e commit 4175376Copy full SHA for 4175376
Simplenote/SPTextView.swift
@@ -31,23 +31,6 @@ extension SPTextView {
31
32
return container
33
}
34
-
35
- private func makeContainer() -> NSTextContainer {
36
- var container: NSTextContainer
37
- if #available(iOS 17.0, *) {
38
- let fallbackContainer = SPFallbackTextContainer(size: .zero)
39
40
- // This value is set incase we need to fall back to text kit 1
41
- //
42
- fallbackContainer.textView = self
43
44
- container = fallbackContainer
45
- } else {
46
- container = NSTextContainer()
47
- }
48
49
- return container
50
51
52
53
// MARK: NSTextContentStorageDelegate
0 commit comments