Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonAHeron committed Jul 7, 2020
1 parent 9db2ece commit bf5b73e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
*
* <p>Firebase In-App Messaging will automatically initialize, and start listening for events.
*
* <p>This feature uses a Firebase Instance ID token to:
* <p>This feature uses a Firebase Installation ID token to:
*
* <ul>
* <li>identify the app instance
* <li>fetch messages from the Firebase backend
* <li>send usage metrics to the Firebase backend.
* </ul>
*
* <p>To delete the Instance ID and the data associated with it, see {@link
* <p>To delete the Installation ID and the data associated with it, see {@link
* FirebaseInstallationsApi#delete()}.
*/
@FirebaseAppScope
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public String getCampaignName() {
return campaignName;
}

/** returns true if the message is a test message */
/** Returns true if the message is a test message */
public boolean getIsTestMessage() {
return isTestMessage;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public Action getSecondaryAction() {
}

/**
* @deprecated This method is deprecated. Use {@link #getPrimaryAction()} or {@link
* @deprecated Use {@link #getPrimaryAction()} or {@link
* #getSecondaryAction()} instead.
*/
@Nullable
Expand All @@ -173,7 +173,7 @@ public Text getBody() {
}

/**
* @deprecated This method is deprecated. Use {@link #getPortraitImageData()} or {@link
* @deprecated Use {@link #getPortraitImageData()} or {@link
* #getLandscapeImageData()} instead.
*/
@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public InAppMessage(
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -82,7 +82,7 @@ public Text getTitle() {
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -93,7 +93,7 @@ public Text getBody() {
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -104,7 +104,7 @@ public String getImageUrl() {
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -115,7 +115,7 @@ public ImageData getImageData() {
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -129,7 +129,7 @@ public Button getActionButton() {
}

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -138,7 +138,7 @@ public Button getActionButton() {
public abstract Action getAction();

/**
* @deprecated This method is deprecated. Use the message specific methods (see {@link
* @deprecated Use the message specific methods (see {@link
* CardMessage}, {@link ModalMessage}, {@link BannerMessage}, {@link ImageOnlyMessage})
* instead.
*/
Expand All @@ -149,7 +149,7 @@ public String getBackgroundHexColor() {
}

/**
* @deprecated This method is deprecated. Use {@link #getCampaignMetadata()#getCampaignId()}
* @deprecated Use {@link #getCampaignMetadata()#getCampaignId()}
* instead.
*/
@Nullable
Expand All @@ -159,7 +159,7 @@ public String getCampaignId() {
}

/**
* @deprecated This method is deprecated. Use {@link #getCampaignMetadata()#getCampaignName()}
* @deprecated Use {@link #getCampaignMetadata()#getCampaignName()}
* instead.
*/
@Nullable
Expand All @@ -169,7 +169,7 @@ public String getCampaignName() {
}

/**
* @deprecated This method is deprecated. Use {@link #getCampaignMetadata()#getIsTestMessage()}
* @deprecated Use {@link #getCampaignMetadata()#getIsTestMessage()}
* instead.
*/
@Nullable
Expand Down

0 comments on commit bf5b73e

Please sign in to comment.