From f75d22fa581500415c72242afcf07a8a4a352728 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 5 Aug 2024 05:01:18 +0100 Subject: [PATCH] api: update method comment --- .../cc/fascinated/model/user/history/HistoryPoint.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/API/src/main/java/cc/fascinated/model/user/history/HistoryPoint.java b/API/src/main/java/cc/fascinated/model/user/history/HistoryPoint.java index ec7273a..fbd75ef 100644 --- a/API/src/main/java/cc/fascinated/model/user/history/HistoryPoint.java +++ b/API/src/main/java/cc/fascinated/model/user/history/HistoryPoint.java @@ -1,5 +1,6 @@ package cc.fascinated.model.user.history; +import cc.fascinated.platform.Platform; import lombok.Getter; import lombok.Setter; @@ -59,10 +60,11 @@ public class HistoryPoint { private Boolean possiblyInaccurateData; /** - * Gets whether the data for this day is possibly inaccurate. + * Gets whether some data is possibly inaccurate. *

- * eg: the user isn't having their data tracked every day - * by us, only when they set a score + * eg: if the user doesn't have their data tracked by + * {@link Platform#trackPlayerMetrics()} then some + * data will be inaccurate or missing. * This will only affect rank, countryRank, and pp *

*