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:
olly 2021-12-23 12:57:16 +00:00 committed by tonihei
parent c37319c519
commit a9660de192

View File

@ -137,7 +137,7 @@ public final class PlayerEmsgHandler implements Handler.Callback {
return true; return true;
} }
switch (message.what) { switch (message.what) {
case (EMSG_MANIFEST_EXPIRED): case EMSG_MANIFEST_EXPIRED:
ManifestExpiryEventInfo messageObj = (ManifestExpiryEventInfo) message.obj; ManifestExpiryEventInfo messageObj = (ManifestExpiryEventInfo) message.obj;
handleManifestExpiredMessage( handleManifestExpiredMessage(
messageObj.eventTimeUs, messageObj.manifestPublishTimeMsInEmsg); messageObj.eventTimeUs, messageObj.manifestPublishTimeMsInEmsg);