diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-06-04 02:18:13 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-06-04 02:24:23 +0530 |
commit | 0669f8a062e9a8743173e755e32efd136438cad6 (patch) | |
tree | 3a93417bc56c83287379d715248a1ef72854e8a0 /app/lint-baseline.xml | |
parent | 469700f62703a9e81ea711ebe7af6f9c9a8e21fe (diff) |
fix: replace `Stack` with `ArrayDeque` in `SearchableRepositoryViewModel`
Diffstat (limited to 'app/lint-baseline.xml')
-rw-r--r-- | app/lint-baseline.xml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/app/lint-baseline.xml b/app/lint-baseline.xml index f6232d8e..de1f0a60 100644 --- a/app/lint-baseline.xml +++ b/app/lint-baseline.xml @@ -83,17 +83,6 @@ <issue id="DenyListedApi" - message="For a stack use ArrayDeque which is more efficient internally." - errorLine1=" private val navigationStack = Stack<NavigationStackEntry>()" - errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> - <location - file="src/main/java/app/passwordstore/util/viewmodel/SearchableRepositoryViewModel.kt" - line="297" - column="33"/> - </issue> - - <issue - id="DenyListedApi" message="Use the structured concurrent CoroutineScope#launch and Flow#collect APIs instead of reactive Flow#onEach and Flow#launchIn. Suspend calls like Flow#collect can be refactored into standalone suspend funs and mixed in with regular control flow in a suspend context, but calls that invoke CoroutineScope#launch and Flow#collect at the same time hide the suspend context, encouraging the developer to continue working in the reactive domain." errorLine1=" model.searchResult" errorLine2=" ^"> |