Commit 276087c5 by Mike Committed by GitHub

Removed useless parentheses

parent f9249d23
...@@ -176,7 +176,7 @@ public class PlayerActivity extends Activity implements OnClickListener, ...@@ -176,7 +176,7 @@ public class PlayerActivity extends Activity implements OnClickListener,
@Override @Override
public void onResume() { public void onResume() {
super.onResume(); super.onResume();
if ((Util.SDK_INT <= 23 || player == null)) { if (Util.SDK_INT <= 23 || player == null) {
initializePlayer(); initializePlayer();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment