summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java5
1 files changed, 3 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 09f373fc26e9..35c61204d251 100644
--- a/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java
+++ b/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java
@@ -466,8 +466,9 @@ public abstract class IContextHubWrapper {
// TODO(271471342): Implement
}
- public byte[] getUuid() {
- return UUID;
+ 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.");
}
@Override