Build Bugsnag inline

This commit is contained in:
M66B
2021-05-15 22:03:05 +02:00
parent 779de80459
commit c49509cfcb
100 changed files with 10890 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.bugsnag.android;
import androidx.annotation.Nullable;
import java.util.Collection;
class CollectionUtils {
static <T> boolean containsNullElements(@Nullable Collection<T> data) {
if (data == null) {
return true;
}
for (T datum : data) {
if (datum == null) {
return true;
}
}
return false;
}
}