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 cfa5cec commit eb2b414
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 eb2b414

Please sign in to comment.