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

Commit ed9e1237 authored by Arthur Ishiguro's avatar Arthur Ishiguro
Browse files

Fix typo in HostEndpointInfo definition

Package name/attribution tag should be a single String.

Bug: 194287786
Test: Compile
Change-Id: I6747add3254eef9f7fd0a0b291ad374096979e11
parent c9f9a745
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -36,8 +36,8 @@ package android.hardware.contexthub;
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,
+2 −2
Original line number Diff line number Diff line
@@ -28,10 +28,10 @@ parcelable HostEndpointInfo {
    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")