Skip to content

Commit fad245d

Browse files
committed
style: fix lint
1 parent 4390d63 commit fad245d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

sample/Assets/Scripts/Other/LaunchBrowserScript.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ public class LaunchBrowserScript : MonoBehaviour
99
{
1010
[SerializeField] private WebBrowserUIFull webBrowser;
1111
[SerializeField] private Button openDevToolsButton;
12-
12+
1313
private WebBrowserClient? webBrowserClient;
1414

1515
public void Start()
1616
{
1717
webBrowser.browserClient.OnLoadFinish += OnLoadFinish;
18-
18+
1919
void OnLoadFinish(string url)
2020
{
2121
webBrowser.browserClient.OnLoadFinish -= OnLoadFinish;

src/Packages/Passport/Editor/PassportPostprocess.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,6 @@ private void CopyFilesTo(string destinationPath)
184184
}
185185
}
186186
}
187-
}
188-
187+
}
188+
189189
#endif

src/Packages/Passport/Runtime/Scripts/Private/Core/Logging/PassportLogger.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public static class PassportLogger
77
private const string TAG = "[Immutable]";
88

99
public static LogLevel CurrentLogLevel { get; set; } = LogLevel.Info;
10-
10+
1111
/// <summary>
1212
/// A function that defines how sensitive data should be redacted.
1313
/// If null, no redaction is applied.
@@ -20,7 +20,7 @@ private static void Log(LogLevel level, string message)
2020
{
2121
return; // Don't log messages below the current log level
2222
}
23-
23+
2424
if (RedactionHandler != null)
2525
{
2626
message = RedactionHandler(message);

0 commit comments

Comments
 (0)