Loading services/companion/java/com/android/server/companion/CompanionDeviceManagerService.java +2 −2 Original line number Diff line number Diff line Loading @@ -612,8 +612,8 @@ public class CompanionDeviceManagerService extends SystemService implements Bind } } private AtomicFile getStorageFileForUser(int uid) { return mUidToStorage.computeIfAbsent(uid, (u) -> private AtomicFile getStorageFileForUser(int userId) { return mUidToStorage.computeIfAbsent(userId, (u) -> new AtomicFile(new File( //TODO deprecated method - what's the right replacement? Environment.getUserSystemDirectory(u), Loading Loading
services/companion/java/com/android/server/companion/CompanionDeviceManagerService.java +2 −2 Original line number Diff line number Diff line Loading @@ -612,8 +612,8 @@ public class CompanionDeviceManagerService extends SystemService implements Bind } } private AtomicFile getStorageFileForUser(int uid) { return mUidToStorage.computeIfAbsent(uid, (u) -> private AtomicFile getStorageFileForUser(int userId) { return mUidToStorage.computeIfAbsent(userId, (u) -> new AtomicFile(new File( //TODO deprecated method - what's the right replacement? Environment.getUserSystemDirectory(u), Loading