Skip to content

Commit 48187b5

Browse files
committed
fixup: javadoc
Signed-off-by: Todd Baert <[email protected]>
1 parent b0eb05a commit 48187b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/dev/openfeature/sdk/Tracking.java

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public interface Tracking {
88
* Performs tracking of a particular action or application state.
99
*
1010
* @param trackingEventName Event name to track
11+
* @throws IllegalArgumentException if {@code trackingEventName} is null
1112
*/
1213
void track(String trackingEventName);
1314

@@ -16,6 +17,7 @@ public interface Tracking {
1617
*
1718
* @param trackingEventName Event name to track
1819
* @param context Evaluation context used in flag evaluation
20+
* @throws IllegalArgumentException if {@code trackingEventName} is null
1921
*/
2022
void track(String trackingEventName, EvaluationContext context);
2123

@@ -24,6 +26,7 @@ public interface Tracking {
2426
*
2527
* @param trackingEventName Event name to track
2628
* @param details Data pertinent to a particular tracking event
29+
* @throws IllegalArgumentException if {@code trackingEventName} is null
2730
*/
2831
void track(String trackingEventName, TrackingEventDetails details);
2932

@@ -33,6 +36,7 @@ public interface Tracking {
3336
* @param trackingEventName Event name to track
3437
* @param context Evaluation context used in flag evaluation
3538
* @param details Data pertinent to a particular tracking event
39+
* @throws IllegalArgumentException if {@code trackingEventName} is null
3640
*/
3741
void track(String trackingEventName, EvaluationContext context, TrackingEventDetails details);
3842
}

0 commit comments

Comments
 (0)