Skip to content

Removing unused status #3389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions firebase-appdistribution-stub/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ package com.google.firebase.appdistribution {
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status DOWNLOAD_FAILURE;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_CANCELED;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_FAILURE;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_FAILURE_SIGNATURE_MISMATCH;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status NETWORK_FAILURE;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status RELEASE_URL_EXPIRED;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status UNKNOWN;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status UPDATE_NOT_AVAILABLE;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,8 @@ public enum Status {
/** Update not available for the current tester and app */
UPDATE_NOT_AVAILABLE,

/** Installation failed due to signature mismatch */
INSTALLATION_FAILURE_SIGNATURE_MISMATCH,

/** App is in production */
APP_RUNNING_IN_PRODUCTION,

/** Download URL for release expired */
RELEASE_URL_EXPIRED,
}

@NonNull private final Status status;
Expand Down
2 changes: 0 additions & 2 deletions firebase-appdistribution/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ package com.google.firebase.appdistribution {
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status HOST_ACTIVITY_INTERRUPTED;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_CANCELED;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_FAILURE;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status INSTALLATION_FAILURE_SIGNATURE_MISMATCH;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status NETWORK_FAILURE;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status RELEASE_URL_EXPIRED;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status UNKNOWN;
enum_constant public static final com.google.firebase.appdistribution.FirebaseAppDistributionException.Status UPDATE_NOT_AVAILABLE;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,9 @@ public enum Status {
/** Update not available for the current tester and app */
UPDATE_NOT_AVAILABLE,

/** Installation failed due to signature mismatch */
INSTALLATION_FAILURE_SIGNATURE_MISMATCH,

/** App is in production */
APP_RUNNING_IN_PRODUCTION,

/** Download URL for release expired */
RELEASE_URL_EXPIRED,

/** Host activity for confirmation dialog destroyed or pushed to the backstack */
HOST_ACTIVITY_INTERRUPTED,
}
Expand Down