Skip to content

Commit

Permalink
Revert "perf(cats/sql): Introduce V2 SQL cache schema (#4998)" (#5008)
Browse files Browse the repository at this point in the history
This reverts commit 5dd86f5.
  • Loading branch information
robzienert committed Oct 10, 2020
1 parent aa218ac commit 53f9d33
Show file tree
Hide file tree
Showing 13 changed files with 440 additions and 1,030 deletions.
Expand Up @@ -112,8 +112,8 @@ class SqlProviderCache(private val backingStore: WriteableCache) : ProviderCache
* @param identifiers the identifiers
* @return the items matching the type and identifiers
*/
override fun getAll(type: String, vararg identifiers: String?): MutableCollection<CacheData> {
return getAll(type, identifiers.filterNotNull().toMutableList())
override fun getAll(type: String, vararg identifiers: String): MutableCollection<CacheData> {
return getAll(type, identifiers.toMutableList())
}

/**
Expand Down

This file was deleted.

0 comments on commit 53f9d33

Please sign in to comment.