浏览代码

Add braces.

/main
Yuncong Zhang 5 年前
当前提交
d8a8d077
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 6
      Runtime/Plugins/platform/android/editing/InputConnectionAdaptor.java

6
Runtime/Plugins/platform/android/editing/InputConnectionAdaptor.java


int selStart = Selection.getSelectionStart(mEditable);
int selEnd = Selection.getSelectionEnd(mEditable);
String text = mEditable.toString();
if(selStart >= 0 && selStart < text.length() && isTrailSurrogate(text.charAt(selStart)))
if(selStart >= 0 && selStart < text.length() && isTrailSurrogate(text.charAt(selStart))) {
if(selEnd >= 0 && selEnd < text.length() && isTrailSurrogate(text.charAt(selEnd)))
}
if(selEnd >= 0 && selEnd < text.length() && isTrailSurrogate(text.charAt(selEnd))) {
}
if (selEnd > selStart) {
// Delete the selection.
Selection.setSelection(mEditable, selStart);

正在加载...
取消
保存