Skip to content

Commit cda0b1d

Browse files
committed
Address PR review
1 parent c231dfc commit cda0b1d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

sentry-android-core/src/main/java/io/sentry/android/core/internal/util/AndroidConnectionStatusProvider.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -807,16 +807,4 @@ private void submitSafe(@NotNull Runnable r) {
807807
.log(SentryLevel.ERROR, "AndroidConnectionStatusProvider submit failed", e);
808808
}
809809
}
810-
811-
private static class ConnectionStatusProviderThreadyFactory implements ThreadFactory {
812-
813-
private int cnt = 0;
814-
815-
@Override
816-
public Thread newThread(Runnable r) {
817-
final Thread ret = new Thread(r, "SentryConnectionStatusProvider-" + cnt++);
818-
ret.setDaemon(true);
819-
return ret;
820-
}
821-
}
822810
}

0 commit comments

Comments
 (0)