Get a big backupV2 import fully working.

This commit is contained in:
Greyson Parrelli
2024-10-10 16:01:48 -04:00
parent 0d878ca70a
commit a90df1e262
27 changed files with 261 additions and 193 deletions

View File

@@ -20,6 +20,10 @@ import java.util.LinkedList
private const val TAG = "ProtoExtension"
fun ByteString?.isEmpty(): Boolean {
return this == null || this.size == 0
}
fun ByteString?.isNotEmpty(): Boolean {
return this != null && this.size > 0
}