Commit a9660de1 by olly Committed by tonihei

Fix 1 ErrorProneStyle finding:

* These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them

PiperOrigin-RevId: 417988060
parent c37319c5
......@@ -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);
......
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