Skip to content

Commit

Permalink
Update browser footer javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jtduffy committed Mar 6, 2025
1 parent 074363b commit a14ff1b
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,18 +352,23 @@ public static String getBrowserTimingHeader(String nonce) {
/**
* Get the RUM JavaScript footer for the current web transaction.
*
* @deprecated The full browser script is now included when calling {@link PublicApi#getBrowserTimingHeader}
* or {@link PublicApi#getBrowserTimingHeader(String)}
*
* @return RUM JavaScript footer for the current web transaction.
* @since 2.21.0
*/
public static String getBrowserTimingFooter() {
return "";
}

/**
* Get the RUM JavaScript footer for the current web transaction.
*
* @param nonce a random per-request nonce for sites using Content Security Policy (CSP)
* @deprecated The full browser script is not included when calling {@link PublicApi#getBrowserTimingHeader}
* or {@link PublicApi#getBrowserTimingHeader(String)}
*
* @return RUM JavaScript footer for the current web transaction.
* @since 7.6.0
*/
public static String getBrowserTimingFooter(String nonce) {
return "";
Expand Down

0 comments on commit a14ff1b

Please sign in to comment.