Remove unused variable

This commit is contained in:
Dean Herbert 2022-03-08 18:19:54 +09:00
parent 0718a55ad0
commit 6565c95b17
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ private void attemptRecoverFromFile(string recoveryFilename)
// Then check that the database we are about to attempt recovery can actually be recovered on this version..
try
{
using (var realm = Realm.GetInstance(getConfiguration(recoveryFilename)))
using (Realm.GetInstance(getConfiguration(recoveryFilename)))
{
// Don't need to do anything, just check that opening the realm works correctly.
}