mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Removed useless parentheses
This commit is contained in:
parent
f9249d23ea
commit
276087c532
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue