mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Fix 1 ErrorProneStyle finding:
* These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them PiperOrigin-RevId: 417988060
This commit is contained in:
parent
c37319c519
commit
a9660de192
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ public final class PlayerEmsgHandler implements Handler.Callback {
|
|||
return true;
|
||||
}
|
||||
switch (message.what) {
|
||||
case (EMSG_MANIFEST_EXPIRED):
|
||||
case EMSG_MANIFEST_EXPIRED:
|
||||
ManifestExpiryEventInfo messageObj = (ManifestExpiryEventInfo) message.obj;
|
||||
handleManifestExpiredMessage(
|
||||
messageObj.eventTimeUs, messageObj.manifestPublishTimeMsInEmsg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue