commit | ed9e12378d17644588a7091e36c48df170f975a8 | [log] [tgz] |
---|---|---|
author | Arthur Ishiguro <arthuri@google.com> | Mon Nov 22 21:35:20 2021 +0000 |
committer | Arthur Ishiguro <arthuri@google.com> | Mon Nov 22 21:36:01 2021 +0000 |
tree | aec18d316145a632c8b9f377f454adc60899de55 | |
parent | c9f9a745acb4265dc42fe94cd5be41b239058e1d [diff] |
Fix typo in HostEndpointInfo definition Package name/attribution tag should be a single String. Bug: 194287786 Test: Compile Change-Id: I6747add3254eef9f7fd0a0b291ad374096979e11
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")