diff options
author | 2024-09-26 13:00:11 -0700 | |
---|---|---|
committer | 2024-09-27 15:48:15 -0700 | |
commit | 8da8dd1daa129dc7eb36096e4215986578ea69ea (patch) | |
tree | 16eef95175b16e8ffc1d3b63fa60d27aa49227ed /ravenwood/runtime-common-src | |
parent | 6beeee510c4624023f667ceba172c24fb8352369 (diff) |
Fix UnusedVariable errorprone issues
https://errorprone.info/bugpattern/UnusedVariable
https://errorprone.info/bugpattern/UnusedTypeParameter
https://errorprone.info/bugpattern/UnusedNestedClass
https://errorprone.info/bugpattern/UnusedMethod
https://errorprone.info/bugpattern/UnusedLabel
Bug: 253827323
Test: m RUN_ERROR_PRONE=true javac-check
Change-Id: Idae6fd5c085fc71e7a0222ee379dd16a7b6a1f20
Diffstat (limited to 'ravenwood/runtime-common-src')
-rw-r--r-- | ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java b/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java index ef795c63880e..520f050f0655 100644 --- a/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java +++ b/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java @@ -37,8 +37,6 @@ public class RavenwoodCommonUtils { private RavenwoodCommonUtils() { } - private static final Object sLock = new Object(); - /** * If set to "1", we enable the verbose logging. * @@ -68,9 +66,6 @@ public class RavenwoodCommonUtils { public static final String RAVENWOOD_VERSION_JAVA_SYSPROP = "android.ravenwood.version"; - // @GuardedBy("sLock") - private static boolean sIntegrityChecked = false; - /** * @return if we're running on Ravenwood. */ |