Skip to content

Commit

Permalink
Remove nil check
Browse files Browse the repository at this point in the history
  • Loading branch information
knopp committed Jun 7, 2022
1 parent 82af5ea commit 75fdba0
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,8 @@ - (void)setEditingState:(NSDictionary*)state {
if (composing_range.collapsed() && wasComposing) {
[_textInputContext discardMarkedText];
}
if (_client != nil) {
[_client startEditing];
}
[_client startEditing];

[self updateTextAndSelection];
}

Expand Down

0 comments on commit 75fdba0

Please sign in to comment.