mirror of
https://github.com/samsonjs/media.git
synced 2026-04-15 12:55:46 +00:00
Fix raw type warning in MediaBrowserCompatWithMediaLibraryServiceTest
PiperOrigin-RevId: 563410425
This commit is contained in:
parent
19878b0b8b
commit
b958f451a7
1 changed files with 2 additions and 2 deletions
|
|
@ -383,7 +383,7 @@ public class MediaBrowserCompatWithMediaLibraryServiceTest
|
|||
String testParentId = PARENT_ID_AUTH_EXPIRED_ERROR;
|
||||
connectAndWait(/* connectionHints= */ Bundle.EMPTY);
|
||||
CountDownLatch errorLatch = new CountDownLatch(1);
|
||||
AtomicReference parentIdRefOnError = new AtomicReference<>();
|
||||
AtomicReference<String> parentIdRefOnError = new AtomicReference<>();
|
||||
|
||||
browserCompat.subscribe(
|
||||
testParentId,
|
||||
|
|
@ -406,7 +406,7 @@ public class MediaBrowserCompatWithMediaLibraryServiceTest
|
|||
.isEqualTo(PARENT_ID_AUTH_EXPIRED_ERROR_KEY_ERROR_RESOLUTION_ACTION_LABEL);
|
||||
|
||||
CountDownLatch successLatch = new CountDownLatch(1);
|
||||
AtomicReference parentIdRefOnChildrenLoaded = new AtomicReference<>();
|
||||
AtomicReference<String> parentIdRefOnChildrenLoaded = new AtomicReference<>();
|
||||
|
||||
browserCompat.subscribe(
|
||||
PARENT_ID,
|
||||
|
|
|
|||
Loading…
Reference in a new issue