更新
This commit is contained in:
@@ -12,8 +12,8 @@ namespace RevitLess
|
||||
|
||||
#region Private Variables
|
||||
|
||||
private string _fileName = string.Empty;
|
||||
private bool _isInitialized = false;
|
||||
private string fileName = string.Empty;
|
||||
private bool isInitialized = false;
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -37,11 +37,11 @@ namespace RevitLess
|
||||
{
|
||||
get
|
||||
{
|
||||
return _isInitialized;
|
||||
return isInitialized;
|
||||
}
|
||||
protected set
|
||||
{
|
||||
_isInitialized = value;
|
||||
isInitialized = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ namespace RevitLess
|
||||
{
|
||||
get
|
||||
{
|
||||
return _fileName;
|
||||
return fileName;
|
||||
}
|
||||
protected set
|
||||
{
|
||||
_fileName = value;
|
||||
fileName = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user