Skip to content

Commit 00442b2

Browse files
committed
Address PR feedback
1 parent c62ce5c commit 00442b2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sentry-android-core/src/main/java/io/sentry/android/core/AnrIntegrationFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public final class AnrIntegrationFactory {
1313
public static Integration create(
1414
final @NotNull Context context, final @NotNull BuildInfoProvider buildInfoProvider) {
1515
if (buildInfoProvider.getSdkInfoVersion() >= Build.VERSION_CODES.R) {
16-
// return new AnrV2Integration(context);
17-
return new AnrIntegration(context);
16+
return new AnrV2Integration(context);
1817
} else {
1918
return new AnrIntegration(context);
2019
}

0 commit comments

Comments
 (0)