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 11, 2022
1 parent 1d36f41 commit 60c55cb
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 60c55cb

Please sign in to comment.