85
85
import com .osfans .trime .setup .IntentReceiver ;
86
86
import com .osfans .trime .util .Function ;
87
87
import com .osfans .trime .util .LocaleUtils ;
88
- import com .osfans .trime .util .StringUitls ;
88
+ import com .osfans .trime .util .StringUtils ;
89
89
import java .util .Locale ;
90
90
import java .util .regex .Matcher ;
91
91
import java .util .regex .Pattern ;
@@ -866,7 +866,7 @@ private boolean handleAction(int code, int mask) { // 編輯操作
866
866
etr .token = 0 ;
867
867
ExtractedText et = ic .getExtractedText (etr , 0 );
868
868
if (et != null ) {
869
- int move_to = StringUitls .findNextSection (et .text , et .startOffset + et .selectionEnd );
869
+ int move_to = StringUtils .findNextSection (et .text , et .startOffset + et .selectionEnd );
870
870
ic .setSelection (move_to , move_to );
871
871
return true ;
872
872
}
@@ -879,7 +879,7 @@ private boolean handleAction(int code, int mask) { // 編輯操作
879
879
ExtractedText et = ic .getExtractedText (etr , 0 );
880
880
if (et != null ) {
881
881
int move_to =
882
- StringUitls .findPrevSection (et .text , et .startOffset + et .selectionStart );
882
+ StringUtils .findPrevSection (et .text , et .startOffset + et .selectionStart );
883
883
ic .setSelection (move_to , move_to );
884
884
return true ;
885
885
}
@@ -1529,10 +1529,10 @@ private void clipBoardMonitor() {
1529
1529
if (item == null ) return ;
1530
1530
final String text = item .coerceToText (self ).toString ();
1531
1531
1532
- final String text2 = StringUitls .stringReplacer (text , mConfig .getClipBoardCompare ());
1532
+ final String text2 = StringUtils .stringReplacer (text , mConfig .getClipBoardCompare ());
1533
1533
if (text2 .length () < 1 || text2 .equals (ClipBoardString )) return ;
1534
1534
1535
- if (StringUitls .stringNotMatch (text , mConfig .getClipBoardOutput ())) {
1535
+ if (StringUtils .stringNotMatch (text , mConfig .getClipBoardOutput ())) {
1536
1536
ClipBoardString = text2 ;
1537
1537
liquidKeyboard .addClipboardData (text );
1538
1538
}
0 commit comments