File tree Expand file tree Collapse file tree
sentry-android-core/src/main/java/io/sentry/android/core Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments