Skip to content

Commit

Permalink
Make var final
Browse files Browse the repository at this point in the history
  • Loading branch information
adinauer committed Apr 26, 2022
1 parent c5eff6c commit 1f51c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/src/main/java/io/sentry/SentryClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private boolean shouldApplyScopeData(
options.getLogger().log(SentryLevel.DEBUG, "Capturing event: %s", event.getEventId());

if (event != null) {
Throwable eventThrowable = event.getThrowable();
final Throwable eventThrowable = event.getThrowable();
if (eventThrowable != null && options.containsIgnoredExceptionForType(eventThrowable)) {
options
.getLogger()
Expand Down

0 comments on commit 1f51c55

Please sign in to comment.