Commit a57245e7 by olly Committed by tonihei

Fix 1 ErrorProneStyle finding:

* @Override is not a TYPE_USE annotation, so should appear before any modifiers and after Javadocs. @CryptoType is a TYPE_USE annotation, so should appear after modifiers and directly before the type.

PiperOrigin-RevId: 418811744
parent aa467f52
......@@ -1758,8 +1758,7 @@ public final class SampleQueueTest {
}
@Override
@C.CryptoType
public int getCryptoType(Format format) {
public @C.CryptoType int getCryptoType(Format format) {
return mockPlaceholderDrmSession != null || format.drmInitData != null
? FakeCryptoConfig.TYPE
: C.CRYPTO_TYPE_NONE;
......
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