Skip to content

Commit e1bdc79

Browse files
committed
Reformat changes
1 parent f4defa2 commit e1bdc79

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

firebase-messaging/src/main/java/com/google/firebase/messaging/GmsRpc.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ class GmsRpc {
5858
/** Another server error besides ERROR_SERVICE_NOT_AVAILABLE that we retry on. */
5959
static final String ERROR_INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR";
6060

61-
/** A server error that represents hitting topic subscription quota. Trying again here may
61+
/**
62+
* A server error that represents hitting topic subscription quota. Trying again here may
6263
* continue to fail, but as long as we use exponential backoff its okay to retry.
6364
*/
6465
static final String TOO_MANY_SUBSCRIBERS = "TOO_MANY_SUBSCRIBERS";

firebase-messaging/src/main/java/com/google/firebase/messaging/TopicsSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ boolean performTopicOperation(TopicOperation topicOperation) throws IOException
252252
// Operation failed, retry failed only if errors from backend are server related error
253253
if (GmsRpc.ERROR_SERVICE_NOT_AVAILABLE.equals(e.getMessage())
254254
|| GmsRpc.ERROR_INTERNAL_SERVER_ERROR.equals(e.getMessage())
255-
|| GmsRpc.TOO_MANY_SUBSCRIBERS.equals(e.getMessage())) {
255+
|| GmsRpc.TOO_MANY_SUBSCRIBERS.equals(e.getMessage())) {
256256
Log.e(TAG, "Topic operation failed: " + e.getMessage() + ". Will retry Topic operation.");
257257

258258
return false; // will retry

0 commit comments

Comments
 (0)