From 38fbb0c74f10d9db8c5d7e696433b97e888ce2e0 Mon Sep 17 00:00:00 2001 From: dylan Date: Tue, 25 Feb 2025 14:52:00 -0800 Subject: [PATCH] formatting --- .../java/com/posthog/internal/PostHogFeatureFlags.kt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/posthog/src/main/java/com/posthog/internal/PostHogFeatureFlags.kt b/posthog/src/main/java/com/posthog/internal/PostHogFeatureFlags.kt index 036092c7..f9d03314 100644 --- a/posthog/src/main/java/com/posthog/internal/PostHogFeatureFlags.kt +++ b/posthog/src/main/java/com/posthog/internal/PostHogFeatureFlags.kt @@ -90,18 +90,17 @@ internal class PostHogFeatureFlags( response?.let { synchronized(featureFlagsLock) { if (response.quotaLimited?.contains("feature_flags") == true) { - config.logger.log("Feature flags are quota limited, clearing existing flags. Learn more about billing limits at https://posthog.com/docs/billing/limits-alerts") + config.logger.log( + "Feature flags are quota limited, clearing existing flags. " + + "Learn more about billing limits at https://posthog.com/docs/billing/limits-alerts", + ) this.featureFlags = null this.featureFlagPayloads = null config.cachePreferences?.let { preferences -> preferences.remove(FEATURE_FLAGS) preferences.remove(FEATURE_FLAGS_PAYLOAD) } -<<<<<<< HEAD - return@executeSafely -======= return@let ->>>>>>> main } if (response.errorsWhileComputingFlags) {