Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bf03c96 authored by Neil Fuller's avatar Neil Fuller Committed by Android Git Automerger
Browse files

am 29a631e1: am 08aa3309: am ead371de: Merge "Remove use of \'_\' variable name"

* commit '29a631e1':
  Remove use of '_' variable name
parents d47f68a8 29a631e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -165,7 +165,6 @@ class SRTTrack extends WebVttTrack {
            return;
        }

        final int _ = 0;
        for (Cue cue : activeCues) {
            TextTrackCue ttc = (TextTrackCue) cue;

@@ -184,7 +183,8 @@ class SRTTrack extends WebVttTrack {
            parcel.writeInt(buf.length);
            parcel.writeByteArray(buf);

            Message msg = mEventHandler.obtainMessage(MEDIA_TIMED_TEXT, _, _, parcel);
            Message msg = mEventHandler.obtainMessage(MEDIA_TIMED_TEXT, 0 /* arg1 */, 0 /* arg2 */,
                    parcel);
            mEventHandler.sendMessage(msg);
        }
        activeCues.clear();