1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-02-13 18:39:56 +03:00

Make isBuildVersionBelow in authenticatorbridge internal ()

This commit is contained in:
Andrew Haisting 2024-10-25 11:39:53 -05:00 committed by GitHub
parent 68a834ac14
commit 5159258de5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions
app
libs
src/main/java/com/x8bit/bitwarden/data/platform/util

View file

@ -10,4 +10,4 @@ import com.x8bit.bitwarden.data.platform.annotation.OmitFromCoverage
*
* @see Build.VERSION_CODES
*/
fun isBuildVersionBelow(version: Int): Boolean = version > Build.VERSION.SDK_INT
internal fun isBuildVersionBelow(version: Int): Boolean = version > Build.VERSION.SDK_INT