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

cleanup: removed unnecessary brackets

This commit is contained in:
Nikolay Pultsin 2011-01-22 23:19:43 +00:00
parent 9530e55f77
commit 098e02c160

View file

@ -91,7 +91,8 @@ public class ZLAndroidWidget extends View implements View.OnLongClickListener {
final int w = getWidth();
final int h = getMainAreaHeight();
if ((myMainBitmap != null) && ((myMainBitmap.getWidth() != w) || (myMainBitmap.getHeight() != h))) {
if (myMainBitmap != null &&
(myMainBitmap.getWidth() != w || myMainBitmap.getHeight() != h)) {
myMainBitmap = null;
mySecondaryBitmap = null;
System.gc();