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

Commit 5686c898 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix typo in HostEndpointInfo definition"

parents 8fc12736 ed9e1237
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")