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:
parent
9530e55f77
commit
098e02c160
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue