From a726fc26d9ac2b26acc4f8ca9fb7e6ca069bbece Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 11 Apr 2019 22:06:07 -0700 Subject: [PATCH] Code rearrange --- NDecrypt/Data/Constants.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/NDecrypt/Data/Constants.cs b/NDecrypt/Data/Constants.cs index 108f957..cc162ee 100644 --- a/NDecrypt/Data/Constants.cs +++ b/NDecrypt/Data/Constants.cs @@ -323,6 +323,11 @@ namespace NDecrypt.Data public const int CXTExtendedDataHeaderLength = 0x800; + #endregion + + /// + /// Represents if all of the keys have been initialized properly + /// public static bool IsReady { get; private set; } /// @@ -369,7 +374,5 @@ namespace NDecrypt.Data IsReady = true; } - - #endregion } }