Make _activeProgressDialogs readonly

This commit is contained in:
ianjazz246
2023-05-20 10:58:19 -07:00
parent 05c94a3af8
commit bcf980eed5

View File

@@ -466,7 +466,7 @@ namespace keepass2android
}
}
private HashSet<RealProgressDialog> _activeProgressDialogs = new HashSet<RealProgressDialog>();
private readonly HashSet<RealProgressDialog> _activeProgressDialogs = new HashSet<RealProgressDialog>();
// Whether the app is currently showing a dialog that requires user input, like a yesNoCancel dialog
private bool _isShowingUserInputDialog = false;