commit | 5686c898beb16fc9fe2569d0680db758b8deb96f | [log] [tgz] |
---|---|---|
author | TreeHugger Robot <treehugger-gerrit@google.com> | Mon Nov 22 23:20:11 2021 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Mon Nov 22 23:20:11 2021 +0000 |
tree | 45a35d0d4a0284f96a4e2d077c19d0e1c3028a18 | |
parent | 8fc127363d423a06ab1d50ea01c3a81c52053f3d [diff] | |
parent | ed9e12378d17644588a7091e36c48df170f975a8 [diff] |
Merge "Fix typo in HostEndpointInfo definition"
diff --git a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl index 7da4482..e7dcbc7 100644 --- a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl +++ b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -36,8 +36,8 @@ parcelable HostEndpointInfo { char hostEndpointId; android.hardware.contexthub.HostEndpointInfo.Type type; - @nullable String[] packageName; - @nullable String[] attributionTag; + @nullable String packageName; + @nullable String attributionTag; @Backing(type="int") @VintfStability enum Type { TYPE_FRAMEWORK = 1,
diff --git a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl index 370703f..40a231d 100644 --- a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl +++ b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -28,10 +28,10 @@ Type type; /** The (optional) package name of the host. */ - @nullable String[] packageName; + @nullable String packageName; /** The (optional) attribution tag associated with this host. */ - @nullable String[] attributionTag; + @nullable String attributionTag; @VintfStability @Backing(type="int")