Skip to content

Commit

Permalink
Auto-format source code
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Autoformatter committed Apr 8, 2024
1 parent b5ca765 commit 8ce6322
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Xamarin.MacDev/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public partial class SQLiteConnection : IDisposable {
private long _elapsedMilliseconds = 0;

private int _transactionDepth = 0;
private RandomNumberGenerator _rand = RandomNumberGenerator.Create();
private RandomNumberGenerator _rand = RandomNumberGenerator.Create ();

public Sqlite3DatabaseHandle Handle { get; private set; }
internal static readonly Sqlite3DatabaseHandle NullHandle = default (Sqlite3DatabaseHandle);
Expand Down Expand Up @@ -856,7 +856,7 @@ public void BeginTransaction ()
public string SaveTransactionPoint ()
{
int depth = Interlocked.Increment (ref _transactionDepth) - 1;
byte[] random = new byte[2];
byte [] random = new byte [2];

_rand.GetNonZeroBytes (random);
var sv = BitConverter.ToUInt16 (random, 0);
Expand Down

0 comments on commit 8ce6322

Please sign in to comment.