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 a57245e782
commit a9edb207a3

View file

@ -28,7 +28,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() {}