Skip to content

Commit fc43927

Browse files
committed
Format code
1 parent c233756 commit fc43927

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ static void applyMetadata(
383383
metadata, logger, ENABLE_SCOPE_PERSISTENCE, options.isEnableScopePersistence()));
384384

385385
options.setEnableAutoTraceIdGeneration(
386-
readBool(metadata, logger, ENABLE_AUTO_TRACE_ID_GENERATION, options.isAttachScreenshot()));
386+
readBool(
387+
metadata, logger, ENABLE_AUTO_TRACE_ID_GENERATION, options.isAttachScreenshot()));
387388

388389
if (options.getSessionReplay().getSessionSampleRate() == null) {
389390
final Double sessionSampleRate =

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ public final class SentryAndroidOptions extends SentryOptions {
166166
*/
167167
private boolean enableScopeSync = true;
168168

169-
/** Whether to enable automatic trace ID generation. This is mainly used by the Hybrid SDKs to
169+
/**
170+
* Whether to enable automatic trace ID generation. This is mainly used by the Hybrid SDKs to
170171
* control the trace ID generation from the outside.
171172
*/
172173
private boolean enableAutoTraceIdGeneration = true;
@@ -600,7 +601,6 @@ public void setFrameMetricsCollector(
600601
this.frameMetricsCollector = frameMetricsCollector;
601602
}
602603

603-
604604
public boolean isEnableAutoTraceIdGeneration() {
605605
return enableAutoTraceIdGeneration;
606606
}

0 commit comments

Comments
 (0)