Skip to content

Commit 04db954

Browse files
committed
Format code
1 parent f8ba72d commit 04db954

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
package io.sentry.android.core;
22

33
import android.util.Log;
4-
4+
import io.sentry.ILogger;
5+
import io.sentry.SentryLevel;
56
import org.jetbrains.annotations.ApiStatus;
67
import org.jetbrains.annotations.NotNull;
78
import org.jetbrains.annotations.Nullable;
89

9-
import io.sentry.ILogger;
10-
import io.sentry.SentryLevel;
11-
1210
@ApiStatus.Internal
1311
public final class AndroidFatalLogger implements ILogger {
1412

sentry/src/main/java/io/sentry/DefaultVersionDetector.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public DefaultVersionDetector(final @NotNull SentryOptions options) {
1414

1515
@Override
1616
public boolean checkForMixedVersions() {
17-
return SentryIntegrationPackageStorage.getInstance().checkForMixedVersions(options.getFatalLogger());
17+
return SentryIntegrationPackageStorage.getInstance()
18+
.checkForMixedVersions(options.getFatalLogger());
1819
}
1920
}

sentry/src/main/java/io/sentry/ManifestVersionDetector.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public ManifestVersionDetector(final @NotNull SentryOptions options) {
1616
@Override
1717
public boolean checkForMixedVersions() {
1818
ManifestVersionReader.getInstance().readManifestFiles();
19-
return SentryIntegrationPackageStorage.getInstance().checkForMixedVersions(options.getFatalLogger());
19+
return SentryIntegrationPackageStorage.getInstance()
20+
.checkForMixedVersions(options.getFatalLogger());
2021
}
2122
}

sentry/src/main/java/io/sentry/SentryOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ public class SentryOptions {
126126

127127
/** Logger interface to log useful debugging information if debug is enabled */
128128
private @NotNull ILogger logger = NoOpLogger.getInstance();
129-
@ApiStatus.Experimental
130-
private @NotNull ILogger fatalLogger = NoOpLogger.getInstance();
129+
130+
@ApiStatus.Experimental private @NotNull ILogger fatalLogger = NoOpLogger.getInstance();
131131

132132
/** minimum LogLevel to be used if debug is enabled */
133133
private @NotNull SentryLevel diagnosticLevel = DEFAULT_DIAGNOSTIC_LEVEL;

0 commit comments

Comments
 (0)