mirror of
https://github.com/samsonjs/media.git
synced 2026-04-19 13:35:47 +00:00
Remove redundant final in PesReader methods
Since the class is final, declaring the overridden methods as final is unnecessary. PiperOrigin-RevId: 629103982
This commit is contained in:
parent
74bb4ac98d
commit
c6492e01e4
1 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ public final class PesReader implements TsPayloadReader {
|
|||
// TsPayloadReader implementation.
|
||||
|
||||
@Override
|
||||
public final void seek() {
|
||||
public void seek() {
|
||||
state = STATE_FINDING_HEADER;
|
||||
bytesRead = 0;
|
||||
seenFirstDts = false;
|
||||
|
|
@ -86,7 +86,7 @@ public final class PesReader implements TsPayloadReader {
|
|||
}
|
||||
|
||||
@Override
|
||||
public final void consume(ParsableByteArray data, @Flags int flags) throws ParserException {
|
||||
public void consume(ParsableByteArray data, @Flags int flags) throws ParserException {
|
||||
Assertions.checkStateNotNull(timestampAdjuster); // Asserts init has been called.
|
||||
|
||||
if ((flags & FLAG_PAYLOAD_UNIT_START_INDICATOR) != 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue