1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00
This commit is contained in:
Nikolay Pultsin 2011-05-21 18:48:46 +01:00
parent ba229dbccd
commit ad0dc1069d

View file

@ -179,7 +179,7 @@ public abstract class DictionaryUtil {
}
public static void openWordInDictionary(Activity activity, ZLTextWordRegion region) {
String text = region.Word.toString();
final String text = region.Word.toString();
int start = 0;
int end = text.length();
for (; start < end && !Character.isLetterOrDigit(text.charAt(start)); ++start);