diff --git a/docs/guides/best-practices.md b/docs/guides/best-practices.md index 2e1a567..00d054a 100644 --- a/docs/guides/best-practices.md +++ b/docs/guides/best-practices.md @@ -165,7 +165,6 @@ class CheckoutViewModel @Inject constructor( } ``` -See [ADR 001](../adr/001-configvalues-multi-module.md) for the rationale behind this design. --- diff --git a/mkdocs.yml b/mkdocs.yml index f69d2bd..e2d99b3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -63,5 +63,3 @@ nav: - iOS Dead-Code Elimination: ios-integration.md - API Reference: api/index.md - Changelog: changelog.md - - ADRs: - - "ADR 001: ConfigValues Multi-Module": adr/001-configvalues-multi-module.md diff --git a/providers/firebase/src/main/kotlin/dev/androidbroadcast/featured/firebase/FirebaseConfigValueProvider.kt b/providers/firebase/src/main/kotlin/dev/androidbroadcast/featured/firebase/FirebaseConfigValueProvider.kt index e2fd357..673fee8 100644 --- a/providers/firebase/src/main/kotlin/dev/androidbroadcast/featured/firebase/FirebaseConfigValueProvider.kt +++ b/providers/firebase/src/main/kotlin/dev/androidbroadcast/featured/firebase/FirebaseConfigValueProvider.kt @@ -98,8 +98,6 @@ public class FirebaseConfigValueProvider( try { task.await() - } catch (e: RuntimeException) { - throw e } catch (e: Exception) { throw FetchException("Firebase Remote Config fetch failed", e) }