Fix 1 ErrorProneStyle finding:

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

PiperOrigin-RevId: 418814902
This commit is contained in:
olly 2021-12-29 18:24:52 +00:00 committed by tonihei
parent c5aa869730
commit 6ad19d65c0

View File

@ -30,7 +30,7 @@ public final class OpusLibrary {
}
private static final LibraryLoader LOADER = new LibraryLoader("opusV2JNI");
@C.CryptoType private static int cryptoType = C.CRYPTO_TYPE_UNSUPPORTED;
private static @C.CryptoType int cryptoType = C.CRYPTO_TYPE_UNSUPPORTED;
private OpusLibrary() {}