Skip to content

Commit d7d5447

Browse files
committed
add preliminary change log
1 parent bf14914 commit d7d5447

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public boolean shouldReportHistorical() {
192192
boolean deletionSuccess = nativeEventCollector.deleteNativeEventFile(matchingNativeEvent);
193193

194194
if (deletionSuccess) {
195-
event = mergeNaiveCrashes(matchingNativeEvent.getEvent(), event);
195+
event = mergeNativeCrashes(matchingNativeEvent.getEvent(), event);
196196
}
197197
} else {
198198
options.getLogger().log(SentryLevel.DEBUG, "No matching native event found for tombstone.");
@@ -206,7 +206,7 @@ public boolean shouldReportHistorical() {
206206
return new ApplicationExitInfoHistoryDispatcher.Report(event, hint, tombstoneHint);
207207
}
208208

209-
private SentryEvent mergeNaiveCrashes(
209+
private SentryEvent mergeNativeCrashes(
210210
final @NotNull SentryEvent nativeEvent, final @NotNull SentryEvent tombstoneEvent) {
211211
nativeEvent.setExceptions(tombstoneEvent.getExceptions());
212212
nativeEvent.setDebugMeta(tombstoneEvent.getDebugMeta());

0 commit comments

Comments
 (0)