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
@ -78,7 +78,7 @@ public final class PesReader implements TsPayloadReader {
|
|||||||
// TsPayloadReader implementation.
|
// TsPayloadReader implementation.
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void seek() {
|
public void seek() {
|
||||||
state = STATE_FINDING_HEADER;
|
state = STATE_FINDING_HEADER;
|
||||||
bytesRead = 0;
|
bytesRead = 0;
|
||||||
seenFirstDts = false;
|
seenFirstDts = false;
|
||||||
@ -86,7 +86,7 @@ public final class PesReader implements TsPayloadReader {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@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.
|
Assertions.checkStateNotNull(timestampAdjuster); // Asserts init has been called.
|
||||||
|
|
||||||
if ((flags & FLAG_PAYLOAD_UNIT_START_INDICATOR) != 0) {
|
if ((flags & FLAG_PAYLOAD_UNIT_START_INDICATOR) != 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user