diff options
| author | 2023-12-01 17:33:02 +0000 | |
|---|---|---|
| committer | 2023-12-01 17:33:02 +0000 | |
| commit | c3595158e0905192f6729fbcec83c53418c28b0c (patch) | |
| tree | 2a4d71c73553f56ba4385976294f0f7e81ec88ae | |
| parent | f9d8b4b309004bf392acc359149565d887ed2571 (diff) | |
| parent | 84ecec98f189da19ff13d3bdf04db74290d7b71e (diff) | |
Merge "Enable UUID support from ContextHubService" into main
| -rw-r--r-- | services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java b/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java index 35c61204d251..d359280c2a6f 100644 --- a/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java +++ b/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java @@ -467,8 +467,7 @@ public abstract class IContextHubWrapper { } public byte[] getUuid() throws RemoteException { - //TODO(b/247124878): return the UUID defined in this file when the API is put in use - throw new RemoteException("This API is not implemented yet."); + return UUID; } @Override |