File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public bool DisableTypeDeclaration
3434 [ Editor ( typeof ( ArrayEditor ) , typeof ( UITypeEditor ) ) ]
3535 public LanguageFeatures [ ] LanguageFeatures { get ; set ; } = {
3636 new LanguageFeatures { Language = "as3" , Numeric = new [ ] { "int" , "uint" } } ,
37- new LanguageFeatures { Language = "haxe" , Numeric = new [ ] { "Int" , "Uint " } }
37+ new LanguageFeatures { Language = "haxe" , Numeric = new [ ] { "Int" , "UInt " } }
3838 } ;
3939 }
4040
@@ -43,9 +43,9 @@ public bool DisableTypeDeclaration
4343 internal class LanguageFeatures
4444 {
4545 [ DisplayName ( "Language name" ) ]
46- public string Language { get ; set ; }
46+ public string Language { get ; set ; } = string . Empty ;
4747
4848 [ DisplayName ( "Numeric types" ) ]
49- public string [ ] Numeric { get ; set ; }
49+ public string [ ] Numeric { get ; set ; } = { } ;
5050 }
5151}
You can’t perform that action at this time.
0 commit comments