1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

formatting cleanup

This commit is contained in:
Nikolay Pultsin 2013-02-01 15:55:02 +00:00
parent fcafd8120a
commit dc59bf47e4
102 changed files with 498 additions and 498 deletions

View file

@ -90,7 +90,7 @@ public abstract class DictionaryUtil {
ParagonInfoReader(Context context) {
myContext = context;
}
@Override
public boolean dontCacheAttributeValues() {
return true;
@ -238,7 +238,7 @@ public abstract class DictionaryUtil {
return intent.putExtra(dictionaryInfo.IntentKey, text);
} else {
return intent.setData(Uri.parse(text));
}
}
}
public static void openTextInDictionary(Activity activity, String text, boolean singleWord, int selectionTop, int selectionBottom) {
@ -277,7 +277,7 @@ public abstract class DictionaryUtil {
}
}
public static void openWordInDictionary(Activity activity, ZLTextWord word, ZLTextRegion region) {
public static void openWordInDictionary(Activity activity, ZLTextWord word, ZLTextRegion region) {
openTextInDictionary(
activity, word.toString(), true, region.getTop(), region.getBottom()
);