File tree Expand file tree Collapse file tree
src/main/java/com/snowplowanalytics/snowplow/tracker/events Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,9 +83,9 @@ protected ScreenView(Builder<?> builder) {
8383 */
8484 public TrackerPayload getPayload () {
8585 TrackerPayload payload = new TrackerPayload ();
86- payload .add (Parameter .SV_NAME , this .name );
8786 payload .add (Parameter .SV_ID , this .id );
88- return putDefaultParams (payload );
87+ payload .add (Parameter .SV_NAME , this .name );
88+ return payload ;
8989 }
9090
9191 /**
Original file line number Diff line number Diff line change @@ -112,10 +112,10 @@ protected Timing(Builder<?> builder) {
112112 public TrackerPayload getPayload () {
113113 TrackerPayload payload = new TrackerPayload ();
114114 payload .add (Parameter .UT_CATEGORY , this .category );
115- payload .add (Parameter .UT_VARIABLE , this .variable );
116- payload .add (Parameter .UT_TIMING , Integer .toString (this .timing ));
117115 payload .add (Parameter .UT_LABEL , this .label );
118- return putDefaultParams (payload );
116+ payload .add (Parameter .UT_TIMING , Integer .toString (this .timing ));
117+ payload .add (Parameter .UT_VARIABLE , this .variable );
118+ return payload ;
119119 }
120120
121121 /**
You can’t perform that action at this time.
0 commit comments