Skip to content

Commit fcce7b2

Browse files
authored
Update sentry-android-core/src/main/java/io/sentry/android/core/internal/threaddump/ThreadDumpParser.java
1 parent b553c09 commit fcce7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry-android-core/src/main/java/io/sentry/android/core/internal/threaddump/ThreadDumpParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public List<SentryThread> getThreads() {
131131
}
132132

133133
@Nullable
134-
private static String buildIdToDebugId(String buildId) {
134+
private static String buildIdToDebugId(final @NotNull String buildId) {
135135
try {
136136
// Abuse BigInteger as a hex string parser. Extra byte needed to handle leading zeros.
137137
final ByteBuffer buf = ByteBuffer.wrap(new BigInteger("10" + buildId, 16).toByteArray());

0 commit comments

Comments
 (0)