Skip to content

Commit

Permalink
Update ReportDataBuilder.java
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput authored Nov 7, 2024
1 parent b5565d9 commit 8f58ea5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class ReportDataBuilder {

/**
* Divide custom user attributes into primitive and complex attributes and add to this object. By default nullable values will be included.
* Divide custom user attributes into primitive and complex attributes and add to this object. By default null values will be included.
*
* @param attributes client's attributes
* @return Report data attributes divided into attributes and annotations
Expand All @@ -20,9 +20,9 @@ public static ReportDataAttributes getReportAttributes(Map<String, Object> attri
* Divide custom user attributes into primitive and complex attributes and add to this object
*
* @param attributes client's attributes
* @param skipNull define attributes behavior on nullable value. By default all nullable attributes
* @param skipNull define attributes behavior on null value. By default all null values
* will be included in the report. For some features like metrics, we don't want to send
* nullable values, because they can generate invalid behavior/incorrect information.
* null values, because they can generate invalid behavior/incorrect information.
* @return Report data attributes divided into attributes and annotations
*/
public static ReportDataAttributes getReportAttributes(Map<String, Object> attributes, boolean skipNull) {
Expand Down

0 comments on commit 8f58ea5

Please sign in to comment.