Skip to content

Commit 1fd59d1

Browse files
author
Rachel Prince
committed
Fix formatting
1 parent 9d77fe9 commit 1fd59d1

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/FirebaseAppDistributionException.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,23 +127,29 @@ static class ErrorMessages {
127127
public static final String NETWORK_ERROR =
128128
"Failed to fetch releases due to unknown network error.";
129129

130-
public static final String JSON_PARSING_ERROR = "Error parsing service response when checking for new release. This is a most likely due to a transient condition and may be corrected by retrying.";
130+
public static final String JSON_PARSING_ERROR =
131+
"Error parsing service response when checking for new release. This is a most likely due to a transient condition and may be corrected by retrying.";
131132

132-
public static final String AUTHENTICATION_ERROR = "Failed to authenticate the tester. The tester was either not signed in, or something went wrong. Try signing in again.";
133+
public static final String AUTHENTICATION_ERROR =
134+
"Failed to authenticate the tester. The tester was either not signed in, or something went wrong. Try signing in again.";
133135

134-
public static final String AUTHORIZATION_ERROR = "Failed to authorize the tester. The tester is not authorized to test this app. Verify that the tester has accepted an invitation to test this app.";
136+
public static final String AUTHORIZATION_ERROR =
137+
"Failed to authorize the tester. The tester is not authorized to test this app. Verify that the tester has accepted an invitation to test this app.";
135138

136139
public static final String AUTHENTICATION_CANCELED = "Tester canceled the authentication flow.";
137140

138-
public static final String NOT_FOUND_ERROR = "Release not found. An update is not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
141+
public static final String NOT_FOUND_ERROR =
142+
"Release not found. An update is not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
139143

140-
public static final String TIMEOUT_ERROR = "Failed to fetch releases due to timeout. Check your internet connection and try again.";
144+
public static final String TIMEOUT_ERROR =
145+
"Failed to fetch releases due to timeout. Check your internet connection and try again.";
141146

142147
public static final String UPDATE_CANCELED = "Tester canceled the update.";
143148

144149
public static final String UNKNOWN_ERROR = "Unknown error.";
145150

146-
public static final String DOWNLOAD_URL_NOT_FOUND = "Download URL not found. This is a most likely due to a transient condition and may be corrected by retrying.";
151+
public static final String DOWNLOAD_URL_NOT_FOUND =
152+
"Download URL not found. This is a most likely due to a transient condition and may be corrected by retrying.";
147153

148154
public static final String HOST_ACTIVITY_INTERRUPTED =
149155
"Host activity interrupted while dialog was showing. Try calling FirebaseAppDistribution#updateIfNewReleaseAvailable again.";

0 commit comments

Comments
 (0)