Skip to content

test: test message #549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/Packages/Passport/Runtime/Scripts/Public/Passport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
using UnityEditor;
#endif

// this is a test...

namespace Immutable.Passport
{

Expand Down Expand Up @@ -53,7 +55,7 @@ public class Passport
/// Gets or sets the log level for the SDK.
/// </summary>
/// <remarks>
/// The log level determines which messages are recorded based on their severity.
/// The log level determines which messages are recorded based on their severity.
/// <para>
/// The default value is <see cref="LogLevel.Info"/>.
/// </para>
Expand Down Expand Up @@ -132,7 +134,7 @@ private Passport()
}

/// <summary>
/// Initialises Passport with the specified parameters.
/// Initialises Passport with the specified parameters.
/// This sets up the Passport instance, configures the web browser, and waits for the ready signal.
/// </summary>
/// <param name="clientId">The client ID</param>
Expand Down Expand Up @@ -226,7 +228,7 @@ private async UniTask Initialise(
else
{
#if IMMUTABLE_CUSTOM_BROWSER
throw new PassportException("When 'IMMUTABLE_CUSTOM_BROWSER' is defined in Scripting Define Symbols, " +
throw new PassportException("When 'IMMUTABLE_CUSTOM_BROWSER' is defined in Scripting Define Symbols, " +
" 'windowsWebBrowserClient' must not be null.");
#else
_webBrowserClient = gameObject.AddComponent<UwbWebView>();
Expand Down Expand Up @@ -408,7 +410,7 @@ public async UniTask<bool> IsRegisteredOffchain()
}

/// <summary>
/// Gets the list of external wallets the user has linked to their Passport account via the
/// Gets the list of external wallets the user has linked to their Passport account via the
/// <see href="https://passport.immutable.com/">Dashboard</see>.
/// <returns>
/// Linked addresses
Expand Down Expand Up @@ -533,7 +535,7 @@ public void ClearCache(bool includeDiskFiles)
}

/// <summary>
/// Clears all the underlying WebView storage currently being used by the JavaScript storage APIs.
/// Clears all the underlying WebView storage currently being used by the JavaScript storage APIs.
/// This includes Web SQL Database and the HTML5 Web Storage APIs.
/// </summary>
/// <returns></returns>
Expand Down Expand Up @@ -664,7 +666,7 @@ private void DisposeAll()
}
#endif

// Unsubscribe from Passport authentication events
// Unsubscribe from Passport authentication events
// and dispose of the Passport implementation
if (_passportImpl != null)
{
Expand Down
Loading