Skip to content

Commit 7eb429f

Browse files
committed
Odd SwiftLint Fix
1 parent 16138a5 commit 7eb429f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CodeEditTextView/TextView/TextView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ public class TextView: NSView, NSTextContent {
383383
let hitView = super.hitTest(point)
384384

385385
if let hitView, hitView != self,
386-
(type(of: hitView) == CursorView.self || type(of: hitView) == LineFragmentView.self) {
386+
type(of: hitView) == CursorView.self || type(of: hitView) == LineFragmentView.self {
387387
return self
388388
}
389389
return hitView

0 commit comments

Comments
 (0)