File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1108,7 +1108,7 @@ open class TextView: UITextView {
11081108 let isOlTagPresent = formatter. present ( in: storage, at: range)
11091109 let isLiTagPresent = liFormatter. present ( in: storage, at: range)
11101110
1111- if ( isOlTagPresent != isLiTagPresent) {
1111+ if isOlTagPresent != isLiTagPresent {
11121112 toggle ( formatter: liFormatter, atRange: range)
11131113 }
11141114 forceRedrawCursorAfterDelay ( )
@@ -1129,7 +1129,7 @@ open class TextView: UITextView {
11291129 let isOlTagPresent = formatter. present ( in: storage, at: range)
11301130 let isLiTagPresent = liFormatter. present ( in: storage, at: range)
11311131
1132- if ( isOlTagPresent != isLiTagPresent) {
1132+ if isOlTagPresent != isLiTagPresent {
11331133 toggle ( formatter: liFormatter, atRange: range)
11341134 }
11351135 forceRedrawCursorAfterDelay ( )
You can’t perform that action at this time.
0 commit comments