Fixed incorrect usage of static on const string.

This commit is contained in:
StingRaptor 2016-01-23 07:57:44 +01:00
parent 3401e5e171
commit 8074459e5f
1 changed files with 4 additions and 4 deletions

View File

@ -14,17 +14,17 @@ namespace xClient.Core.Registry
#region RegistryKey
private static const string REGISTRY_KEY_CREATE_ERROR = "Cannot create key: Error writing to the registry";
private const string REGISTRY_KEY_CREATE_ERROR = "Cannot create key: Error writing to the registry";
private static const string REGISTRY_KEY_DELETE_ERROR = "Cannot delete key: Error writing to the registry";
private const string REGISTRY_KEY_DELETE_ERROR = "Cannot delete key: Error writing to the registry";
private static const string REGISTRY_KEY_RENAME_ERROR = "Cannot rename key: Error writing to the registry";
private const string REGISTRY_KEY_RENAME_ERROR = "Cannot rename key: Error writing to the registry";
#endregion
#region RegistryValue
private static const string REGISTRY_VALUE_CREATE_ERROR = "Cannot create value: Error writing to the registry";
private const string REGISTRY_VALUE_CREATE_ERROR = "Cannot create value: Error writing to the registry";
#endregion