Remove an unused method

Change-Id: I3abbf6462c31b11167e356fe77b8afca2514a869
main
Ken Wakasa 2012-04-22 12:50:01 +09:00
parent 621e3f9830
commit f8ad37a8fc
1 changed files with 0 additions and 24 deletions

View File

@ -37,30 +37,6 @@ public class EditingUtils {
// Unintentional empty constructor for singleton.
}
/**
* Append newText to the text field represented by connection.
* The new text becomes selected.
*/
public static void appendText(InputConnection connection, String newText) {
if (connection == null) {
return;
}
// Commit the composing text
connection.finishComposingText();
// Add a space if the field already has text.
String text = newText;
CharSequence charBeforeCursor = connection.getTextBeforeCursor(1, 0);
if (charBeforeCursor != null
&& !charBeforeCursor.equals(" ")
&& (charBeforeCursor.length() > 0)) {
text = " " + text;
}
connection.setComposingText(text, 1);
}
private static int getCursorPosition(InputConnection connection) {
if (null == connection) return INVALID_CURSOR_POSITION;
ExtractedText extracted = connection.getExtractedText(