Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 214d1773 authored by Lei Ju's avatar Lei Ju
Browse files

Throw a RemoteException for the getUuid API

This is a temporary solution before introducing flag-guarded code.

Bug: 290375569
Test: compilation
Change-Id: I3b775ef64466e56fca0d9ded804a0396a91649e7
parent 33b11a0f
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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