mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-11 13:29:41 -05:00
Merge pull request #272 from saturday06/fix/typo_private_fields
Fix typo (private fields)
This commit is contained in:
@@ -55,7 +55,7 @@ namespace UniJSON
|
||||
get; set;
|
||||
}
|
||||
|
||||
Dictionary<string, string[]> m_depndencies;
|
||||
Dictionary<string, string[]> m_dependencies;
|
||||
/// <summary>
|
||||
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.5.7
|
||||
/// </summary>
|
||||
@@ -63,11 +63,11 @@ namespace UniJSON
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_depndencies == null)
|
||||
if (m_dependencies == null)
|
||||
{
|
||||
m_depndencies = new Dictionary<string, string[]>();
|
||||
m_dependencies = new Dictionary<string, string[]>();
|
||||
}
|
||||
return m_depndencies;
|
||||
return m_dependencies;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ namespace UniJSON
|
||||
get; set;
|
||||
}
|
||||
|
||||
Dictionary<string, string[]> m_depndencies;
|
||||
Dictionary<string, string[]> m_dependencies;
|
||||
/// <summary>
|
||||
/// http://json-schema.org/latest/json-schema-validation.html#rfc.section.6.5.7
|
||||
/// </summary>
|
||||
@@ -76,11 +76,11 @@ namespace UniJSON
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_depndencies == null)
|
||||
if (m_dependencies == null)
|
||||
{
|
||||
m_depndencies = new Dictionary<string, string[]>();
|
||||
m_dependencies = new Dictionary<string, string[]>();
|
||||
}
|
||||
return m_depndencies;
|
||||
return m_dependencies;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user