File tree Expand file tree Collapse file tree 2 files changed +1
-17
lines changed
sentry-android-core/src/main/java/io/sentry/android/core Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- Cache network capabilities and status to reduce IPC calls ([#4560](https://github.com/getsentry/sentry-java/pull/4560))
12
12
- Deduplicate battery breadcrumbs ([#4561](https://github.com/getsentry/sentry-java/pull/4561))
13
+ - Remove unused method in ManifestMetadataReader ([#4585](https://github.com/getsentry/sentry-java/pull/4585))
13
14
14
15
15
16
## 8.18.0
Original file line number Diff line number Diff line change @@ -532,23 +532,6 @@ private static boolean readBool(
532
532
return value ;
533
533
}
534
534
535
- @ SuppressWarnings ("deprecation" )
536
- private static @ Nullable Boolean readBoolNullable (
537
- final @ NotNull Bundle metadata ,
538
- final @ NotNull ILogger logger ,
539
- final @ NotNull String key ,
540
- final @ Nullable Boolean defaultValue ) {
541
- if (metadata .getSerializable (key ) != null ) {
542
- final boolean nonNullDefault = defaultValue == null ? false : true ;
543
- final boolean bool = metadata .getBoolean (key , nonNullDefault );
544
- logger .log (SentryLevel .DEBUG , key + " read: " + bool );
545
- return bool ;
546
- } else {
547
- logger .log (SentryLevel .DEBUG , key + " used default " + defaultValue );
548
- return defaultValue ;
549
- }
550
- }
551
-
552
535
private static @ Nullable String readString (
553
536
final @ NotNull Bundle metadata ,
554
537
final @ NotNull ILogger logger ,
You can’t perform that action at this time.
0 commit comments